mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
This commit is contained in:
parent
3a71748e5d
commit
d88da82e28
Notes:
sideshowbarker
2024-07-17 18:16:10 +09:00
Author: https://github.com/itamar8910
Commit: d88da82e28
Pull-request: https://github.com/SerenityOS/serenity/pull/12760
26 changed files with 53 additions and 53 deletions
|
@ -7,7 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <LibIPC/ConnectionToServer.h>
|
||||
#include <WebSocket/WebSocketClientEndpoint.h>
|
||||
#include <WebSocket/WebSocketServerEndpoint.h>
|
||||
|
||||
|
@ -16,7 +16,7 @@ namespace Protocol {
|
|||
class WebSocket;
|
||||
|
||||
class WebSocketClient final
|
||||
: public IPC::ServerConnection<WebSocketClientEndpoint, WebSocketServerEndpoint>
|
||||
: public IPC::ConnectionToServer<WebSocketClientEndpoint, WebSocketServerEndpoint>
|
||||
, public WebSocketClientEndpoint {
|
||||
IPC_CLIENT_CONNECTION(WebSocketClient, "/tmp/portal/websocket")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue