1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:57:35 +00:00

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
parent 95aa6562db
commit e255b5dd31
9 changed files with 0 additions and 36 deletions

View file

@ -41,7 +41,6 @@ public:
void clear_inspected_dom_node();
i32 get_hovered_node_id();
void js_console_initialize();
void js_console_input(const String& js_source);
void js_console_request_messages(i32 start_index);
@ -75,7 +74,6 @@ public:
void notify_server_did_get_source(const URL& url, const String& source);
void notify_server_did_get_dom_tree(const String& dom_tree);
void notify_server_did_get_dom_node_properties(i32 node_id, String const& specified_style, String const& computed_style);
void notify_server_did_js_console_output(const String& method, const String& line);
void notify_server_did_output_js_console_message(i32 message_index);
void notify_server_did_get_js_console_messages(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages);
void notify_server_did_change_favicon(const Gfx::Bitmap& favicon);