1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00

LibWebView+WebContent: Remove "styled" JS console IPC hooks

This was used by the built-in Inspector to send HTML-ified JS console
messages to the browser. It is no longer used.
This commit is contained in:
Timothy Flynn 2025-03-25 10:11:17 -04:00 committed by Jelle Raaijmakers
parent a5f3a60ed5
commit 5d0fbc85e5
Notes: github-actions[bot] 2025-03-27 14:15:12 +00:00
8 changed files with 12 additions and 29 deletions

View file

@ -212,8 +212,7 @@ public:
Function<void(Web::CSS::StyleSheetIdentifier const&, URL::URL const&, String const&)> on_received_style_sheet_source;
Function<void(JsonValue)> on_received_js_console_result;
Function<void(i32 message_id)> on_console_message_available;
Function<void(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages)> on_received_styled_console_messages;
Function<void(i32 start_index, Vector<ConsoleOutput>)> on_received_unstyled_console_messages;
Function<void(i32 start_index, Vector<ConsoleOutput>)> on_received_console_messages;
Function<void(i32 count_waiting)> on_resource_status_change;
Function<void()> on_restore_window;
Function<void(Gfx::IntPoint)> on_reposition_window;