summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibProtocol/WebSocketClient.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-23 09:52:41 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-23 09:53:55 +0200
commita345a1f4a155ae62fb218f7f4c13d08911a73397 (patch)
tree3573a0d425ab5738e8cf99c56da1b9ac1fa07afa /Userland/Libraries/LibProtocol/WebSocketClient.h
parentc1c252ddb2316cd2e82e3599d1a067c68ea9d099 (diff)
downloadserenity-a345a1f4a155ae62fb218f7f4c13d08911a73397.zip
Userland: Mark subclasses of IPC::{Client,Server}Connection final
Diffstat (limited to 'Userland/Libraries/LibProtocol/WebSocketClient.h')
-rw-r--r--Userland/Libraries/LibProtocol/WebSocketClient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibProtocol/WebSocketClient.h b/Userland/Libraries/LibProtocol/WebSocketClient.h
index ac6a2d0a98..c2f8a70ce6 100644
--- a/Userland/Libraries/LibProtocol/WebSocketClient.h
+++ b/Userland/Libraries/LibProtocol/WebSocketClient.h
@@ -15,7 +15,7 @@ namespace Protocol {
class WebSocket;
-class WebSocketClient
+class WebSocketClient final
: public IPC::ServerConnection<WebSocketClientEndpoint, WebSocketServerEndpoint>
, public WebSocketClientEndpoint {
C_OBJECT(WebSocketClient);