summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/OutOfProcessWebView.h
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/OutOfProcessWebView.h
parentfb6c8781a25c9dae71667ab3b74a8347f844fd9b (diff)
downloadserenity-75943503761acd5b83523544202a6f5d9c7aa68d.zip
Browser: Show currently loading host and remaining resource count
Diffstat (limited to 'Userland/Libraries/LibWeb/OutOfProcessWebView.h')
-rw-r--r--Userland/Libraries/LibWeb/OutOfProcessWebView.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.h b/Userland/Libraries/LibWeb/OutOfProcessWebView.h
index 8a4a430ad6..2f168d1c18 100644
--- a/Userland/Libraries/LibWeb/OutOfProcessWebView.h
+++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.h
@@ -88,6 +88,7 @@ public:
void notify_server_did_change_favicon(const Gfx::Bitmap& favicon);
String notify_server_did_request_cookie(Badge<WebContentClient>, const AK::URL& url, Cookie::Source source);
void notify_server_did_set_cookie(Badge<WebContentClient>, const AK::URL& url, const Cookie::ParsedCookie& cookie, Cookie::Source source);
+ void notify_server_did_update_resource_count(i32 count_waiting);
private:
OutOfProcessWebView();