summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebContentClient.cpp
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2022-02-25 12:27:37 +0200
committerAndreas Kling <kling@serenityos.org>2022-02-25 22:35:12 +0100
commitd88da82e281e041c24d5c61194e7646926341610 (patch)
treea3ab109b168d5356526b2671788cbfee776495c7 /Userland/Libraries/LibWeb/WebContentClient.cpp
parent3a71748e5d16a244c21aaf28ca3c4220c47f484e (diff)
downloadserenity-d88da82e281e041c24d5c61194e7646926341610.zip
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
Diffstat (limited to 'Userland/Libraries/LibWeb/WebContentClient.cpp')
-rw-r--r--Userland/Libraries/LibWeb/WebContentClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/WebContentClient.cpp b/Userland/Libraries/LibWeb/WebContentClient.cpp
index 770fed6e65..9220a61775 100644
--- a/Userland/Libraries/LibWeb/WebContentClient.cpp
+++ b/Userland/Libraries/LibWeb/WebContentClient.cpp
@@ -12,7 +12,7 @@
namespace Web {
WebContentClient::WebContentClient(NonnullOwnPtr<Core::Stream::LocalSocket> socket, OutOfProcessWebView& view)
- : IPC::ServerConnection<WebContentClientEndpoint, WebContentServerEndpoint>(*this, move(socket))
+ : IPC::ConnectionToServer<WebContentClientEndpoint, WebContentServerEndpoint>(*this, move(socket))
, m_view(view)
{
}