mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00: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
26 changed files with 53 additions and 53 deletions
|
@ -8,12 +8,12 @@
|
|||
|
||||
#include <InspectorServer/InspectorClientEndpoint.h>
|
||||
#include <InspectorServer/InspectorServerEndpoint.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <LibIPC/ConnectionToServer.h>
|
||||
|
||||
namespace Inspector {
|
||||
|
||||
class InspectorServerClient final
|
||||
: public IPC::ServerConnection<InspectorClientEndpoint, InspectorServerEndpoint>
|
||||
: public IPC::ConnectionToServer<InspectorClientEndpoint, InspectorServerEndpoint>
|
||||
, public InspectorClientEndpoint {
|
||||
IPC_CLIENT_CONNECTION(InspectorServerClient, "/tmp/portal/inspector")
|
||||
|
||||
|
@ -22,7 +22,7 @@ public:
|
|||
|
||||
private:
|
||||
InspectorServerClient(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
|
||||
: IPC::ServerConnection<InspectorClientEndpoint, InspectorServerEndpoint>(*this, move(socket))
|
||||
: IPC::ConnectionToServer<InspectorClientEndpoint, InspectorServerEndpoint>(*this, move(socket))
|
||||
{
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue