summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/WebContentClient.cpp
diff options
context:
space:
mode:
authorBen Abraham <ben.d.abraham@gmail.com>2022-02-20 17:03:39 -0500
committerLinus Groh <mail@linusgroh.de>2022-03-10 00:51:05 +0100
commit75943503761acd5b83523544202a6f5d9c7aa68d (patch)
tree1e155ae06823d568a6237df1e61e4f4c67bd9d8e /Userland/Libraries/LibWeb/WebContentClient.cpp
parentfb6c8781a25c9dae71667ab3b74a8347f844fd9b (diff)
downloadserenity-75943503761acd5b83523544202a6f5d9c7aa68d.zip
Browser: Show currently loading host and remaining resource count
Diffstat (limited to 'Userland/Libraries/LibWeb/WebContentClient.cpp')
-rw-r--r--Userland/Libraries/LibWeb/WebContentClient.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/WebContentClient.cpp b/Userland/Libraries/LibWeb/WebContentClient.cpp
index 1787e94c09..531cf0cda3 100644
--- a/Userland/Libraries/LibWeb/WebContentClient.cpp
+++ b/Userland/Libraries/LibWeb/WebContentClient.cpp
@@ -195,4 +195,9 @@ void WebContentClient::did_set_cookie(AK::URL const& url, Web::Cookie::ParsedCoo
m_view.notify_server_did_set_cookie({}, url, cookie, static_cast<Cookie::Source>(source));
}
+void WebContentClient::did_update_resource_count(i32 count_waiting)
+{
+ m_view.notify_server_did_update_resource_count(count_waiting);
+}
+
}