LibWeb: Add in all of the plumbing required to use the JS console over IPC

This commit is contained in:
Brandon Scott 2021-02-27 21:47:14 -06:00 committed by Andreas Kling
commit 0682af7b65
Notes: sideshowbarker 2024-07-18 22:57:59 +09:00
5 changed files with 27 additions and 1 deletions

View file

@ -47,6 +47,7 @@ public:
Function<void(const URL&)> on_url_drop;
Function<void(DOM::Document*)> on_set_document;
Function<void(const URL&, const String&)> on_get_source;
Function<void(const String& method, const String& line)> on_js_console_output;
};
}