diff --git a/Userland/Services/WebContent/ConnectionFromClient.h b/Userland/Services/WebContent/ConnectionFromClient.h index ee61d81f53..da276be9fe 100644 --- a/Userland/Services/WebContent/ConnectionFromClient.h +++ b/Userland/Services/WebContent/ConnectionFromClient.h @@ -39,6 +39,9 @@ public: Optional fd() { return socket().fd(); } + PageHost& page_host() { return *m_page_host; } + PageHost const& page_host() const { return *m_page_host; } + private: explicit ConnectionFromClient(NonnullOwnPtr);