diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/WebViewHooks.h')
-rw-r--r-- | Userland/Libraries/LibWeb/WebViewHooks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/WebViewHooks.h b/Userland/Libraries/LibWeb/WebViewHooks.h index e5e9ca9495..c83afd34af 100644 --- a/Userland/Libraries/LibWeb/WebViewHooks.h +++ b/Userland/Libraries/LibWeb/WebViewHooks.h @@ -29,7 +29,7 @@ public: Function<void(DOM::Document*)> on_set_document; Function<void(const AK::URL&, const String&)> on_get_source; Function<void(const String&)> on_get_dom_tree; - Function<void(i32 node_id, String const& specified_style, String const& computed_style)> on_get_dom_node_properties; + Function<void(i32 node_id, String const& specified_style, String const& computed_style, String const& custom_properties)> on_get_dom_node_properties; Function<void(i32 message_id)> on_js_console_new_message; Function<void(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages)> on_get_js_console_messages; Function<String(const AK::URL& url, Cookie::Source source)> on_get_cookie; |