diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-09-04 12:29:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-06 18:20:26 +0200 |
commit | e255b5dd31e0db23ecfff2615c4e2c99e3ddb5bc (patch) | |
tree | 847968cecc25f43e2b06c691c89ebc6a827e5172 /Userland/Libraries/LibWeb/WebContentClient.cpp | |
parent | 95aa6562db6683435a3d572b371f34f804c96544 (diff) | |
download | serenity-e255b5dd31e0db23ecfff2615c4e2c99e3ddb5bc.zip |
LibWeb+WebContent: Remove old console-logging IPC calls
This patch removes the following WebContent IPC calls, which are no
longer used:
- `Server::js_console_initialize()`
- `Client::did_js_console_output()`
Diffstat (limited to 'Userland/Libraries/LibWeb/WebContentClient.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/WebContentClient.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibWeb/WebContentClient.cpp b/Userland/Libraries/LibWeb/WebContentClient.cpp index 25e3e28204..b248e32f88 100644 --- a/Userland/Libraries/LibWeb/WebContentClient.cpp +++ b/Userland/Libraries/LibWeb/WebContentClient.cpp @@ -146,11 +146,6 @@ void WebContentClient::did_get_dom_node_properties(i32 node_id, String const& sp m_view.notify_server_did_get_dom_node_properties(node_id, specified_style, computed_style); } -void WebContentClient::did_js_console_output(String const& method, String const& line) -{ - m_view.notify_server_did_js_console_output(method, line); -} - void WebContentClient::did_output_js_console_message(i32 message_index) { m_view.notify_server_did_output_js_console_message(message_index); |