summaryrefslogtreecommitdiff
path: root/Userland/Services/LaunchServer/ClientConnection.cpp
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-03 15:52:56 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-03 21:14:40 +0200
commit9e22e9ce88d180367394614078c36e336358b24b (patch)
tree8b76cef533de8e4c438c33d65c860202880e4f1d /Userland/Services/LaunchServer/ClientConnection.cpp
parenteb21aa65d131f6fb382ad80d672e5a7ffb1a21e1 (diff)
downloadserenity-9e22e9ce88d180367394614078c36e336358b24b.zip
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
Diffstat (limited to 'Userland/Services/LaunchServer/ClientConnection.cpp')
-rw-r--r--Userland/Services/LaunchServer/ClientConnection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/LaunchServer/ClientConnection.cpp b/Userland/Services/LaunchServer/ClientConnection.cpp
index 13f267763d..97de2c0c56 100644
--- a/Userland/Services/LaunchServer/ClientConnection.cpp
+++ b/Userland/Services/LaunchServer/ClientConnection.cpp
@@ -32,7 +32,7 @@ void ClientConnection::greet()
{
}
-Messages::LaunchServer::OpenURLResponse ClientConnection::open_url(URL const& url, String const& handler_name)
+Messages::LaunchServer::OpenUrlResponse ClientConnection::open_url(URL const& url, String const& handler_name)
{
if (!m_allowlist.is_empty()) {
bool allowed = false;
@@ -55,12 +55,12 @@ Messages::LaunchServer::OpenURLResponse ClientConnection::open_url(URL const& ur
return Launcher::the().open_url(url, handler_name);
}
-Messages::LaunchServer::GetHandlersForURLResponse ClientConnection::get_handlers_for_url(URL const& url)
+Messages::LaunchServer::GetHandlersForUrlResponse ClientConnection::get_handlers_for_url(URL const& url)
{
return Launcher::the().handlers_for_url(url);
}
-Messages::LaunchServer::GetHandlersWithDetailsForURLResponse ClientConnection::get_handlers_with_details_for_url(URL const& url)
+Messages::LaunchServer::GetHandlersWithDetailsForUrlResponse ClientConnection::get_handlers_with_details_for_url(URL const& url)
{
return Launcher::the().handlers_with_details_for_url(url);
}