1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

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
parent 51f073ff39
commit 0682af7b65
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;
};
}