mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
This commit is contained in:
committed by
Andreas Kling
parent
eb21aa65d1
commit
9e22e9ce88
@@ -213,7 +213,7 @@ void ClientConnection::get_source()
|
||||
}
|
||||
}
|
||||
|
||||
void ClientConnection::jsconsole_initialize()
|
||||
void ClientConnection::js_console_initialize()
|
||||
{
|
||||
if (auto* document = page().main_frame().document()) {
|
||||
auto interpreter = document->interpreter().make_weak_ptr();
|
||||
@@ -226,7 +226,7 @@ void ClientConnection::jsconsole_initialize()
|
||||
}
|
||||
}
|
||||
|
||||
void ClientConnection::jsconsole_input(const String& js_source)
|
||||
void ClientConnection::js_console_input(const String& js_source)
|
||||
{
|
||||
if (m_console_client)
|
||||
m_console_client->handle_input(js_source);
|
||||
|
||||
Reference in New Issue
Block a user