summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/WebContentView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/WebContentView.cpp')
-rw-r--r--Libraries/LibWeb/WebContentView.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Libraries/LibWeb/WebContentView.cpp b/Libraries/LibWeb/WebContentView.cpp
index f5851e50ac..739372f08a 100644
--- a/Libraries/LibWeb/WebContentView.cpp
+++ b/Libraries/LibWeb/WebContentView.cpp
@@ -150,6 +150,12 @@ void WebContentView::notify_server_did_middle_click_link(Badge<WebContentClient>
on_link_middle_click(url, target, modifiers);
}
+void WebContentView::notify_server_did_start_loading(Badge<WebContentClient>, const URL& url)
+{
+ if (on_load_start)
+ on_load_start(url);
+}
+
void WebContentView::did_scroll()
{
client().post_message(Messages::WebContentServer::SetViewportRect(visible_content_rect()));