|
@@ -43,6 +43,7 @@ public:
|
|
|
|
|
|
void js_console_initialize();
|
|
void js_console_initialize();
|
|
void js_console_input(const String& js_source);
|
|
void js_console_input(const String& js_source);
|
|
|
|
+ void js_console_request_messages(i32 start_index);
|
|
|
|
|
|
void run_javascript(StringView);
|
|
void run_javascript(StringView);
|
|
|
|
|
|
@@ -75,6 +76,8 @@ public:
|
|
void notify_server_did_get_dom_tree(const String& dom_tree);
|
|
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_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_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);
|
|
void notify_server_did_change_favicon(const Gfx::Bitmap& favicon);
|
|
String notify_server_did_request_cookie(Badge<WebContentClient>, const URL& url, Cookie::Source source);
|
|
String notify_server_did_request_cookie(Badge<WebContentClient>, const URL& url, Cookie::Source source);
|
|
void notify_server_did_set_cookie(Badge<WebContentClient>, const URL& url, const Cookie::ParsedCookie& cookie, Cookie::Source source);
|
|
void notify_server_did_set_cookie(Badge<WebContentClient>, const URL& url, const Cookie::ParsedCookie& cookie, Cookie::Source source);
|