mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
Rename new IPC headers & classes
Sticking these in a namespace allows us to use a more generic
("Connection") term without clashing, which is way easier to understand
than to try to come up with unique names for both.
This commit is contained in:
committed by
Andreas Kling
parent
2177594c96
commit
9c8dd836fc
@@ -40,7 +40,7 @@ WSClientConnection* WSClientConnection::from_client_id(int client_id)
|
||||
}
|
||||
|
||||
WSClientConnection::WSClientConnection(int fd, int client_id)
|
||||
: CIPCServerSideClient(fd, client_id)
|
||||
: Connection(fd, client_id)
|
||||
{
|
||||
if (!s_connections)
|
||||
s_connections = new HashMap<int, WSClientConnection*>;
|
||||
@@ -88,7 +88,7 @@ void WSClientConnection::event(CEvent& event)
|
||||
return;
|
||||
}
|
||||
|
||||
CIPCServerSideClient::event(event);
|
||||
Connection::event(event);
|
||||
}
|
||||
|
||||
static Vector<Rect, 32> get_rects(const WSAPI_ClientMessage& message, const ByteBuffer& extra_data)
|
||||
|
||||
Reference in New Issue
Block a user