1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09: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:
Gunnar Beutner 2021-05-03 15:52:56 +02:00 committed by Andreas Kling
parent eb21aa65d1
commit 9e22e9ce88
Notes: sideshowbarker 2024-07-18 18:44:24 +09:00
36 changed files with 296 additions and 287 deletions

View file

@ -391,12 +391,12 @@ void OutOfProcessWebView::get_source()
void OutOfProcessWebView::js_console_initialize()
{
client().async_jsconsole_initialize();
client().async_js_console_initialize();
}
void OutOfProcessWebView::js_console_input(const String& js_source)
{
client().async_jsconsole_input(js_source);
client().async_js_console_input(js_source);
}
}