LibWeb: Make the WebContentView::on_load_start hook actually work :^)

This commit is contained in:
Andreas Kling 2020-07-06 21:58:16 +02:00
parent a94ef9e021
commit 9169c8ca94
Notes: sideshowbarker 2024-07-19 05:06:04 +09:00
7 changed files with 20 additions and 0 deletions

View file

@ -154,4 +154,9 @@ void PageHost::page_did_middle_click_link(const URL& url, [[maybe_unused]] const
m_client.post_message(Messages::WebContentClient::DidMiddleClickLink(url, target, modifiers));
}
void PageHost::page_did_start_loading(const URL& url)
{
m_client.post_message(Messages::WebContentClient::DidStartLoading(url));
}
}