diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-23 09:52:41 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-23 09:53:55 +0200 |
commit | a345a1f4a155ae62fb218f7f4c13d08911a73397 (patch) | |
tree | 3573a0d425ab5738e8cf99c56da1b9ac1fa07afa /Userland/Libraries/LibProtocol/WebSocketClient.h | |
parent | c1c252ddb2316cd2e82e3599d1a067c68ea9d099 (diff) | |
download | serenity-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.h | 2 |
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); |