1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:57:47 +00:00

WebContent: Remove unnecessary client map

WebContent processes only serve a single client, so we don't need to
keep a map of them.
This commit is contained in:
Andreas Kling 2021-11-29 17:29:23 +01:00
parent 314a687eeb
commit 6cb3092b42
3 changed files with 5 additions and 10 deletions

View file

@ -32,7 +32,7 @@ public:
void initialize_js_console(Badge<PageHost>);
private:
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>, int client_id);
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>);
Web::Page& page();
const Web::Page& page() const;