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()`
This commit is contained in:
Sam Atkins 2021-09-04 12:29:25 +01:00 committed by Andreas Kling
commit e255b5dd31
Notes: sideshowbarker 2024-07-18 04:35:35 +09:00
9 changed files with 0 additions and 36 deletions

View file

@ -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);