diff options
Diffstat (limited to 'Servers/ProtocolServer/PSClientConnection.h')
-rw-r--r-- | Servers/ProtocolServer/PSClientConnection.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Servers/ProtocolServer/PSClientConnection.h b/Servers/ProtocolServer/PSClientConnection.h index 5797b7d460..d1cb11a8b4 100644 --- a/Servers/ProtocolServer/PSClientConnection.h +++ b/Servers/ProtocolServer/PSClientConnection.h @@ -4,8 +4,11 @@ #include <LibIPC/IClientConnection.h> #include <ProtocolServer/ProtocolServerEndpoint.h> -class Download; +namespace AK { class SharedBuffer; +} + +class Download; class PSClientConnection final : public IClientConnection<ProtocolServerEndpoint> , public ProtocolServerEndpoint { @@ -26,5 +29,5 @@ private: virtual OwnPtr<ProtocolServer::StopDownloadResponse> handle(const ProtocolServer::StopDownload&) override; virtual OwnPtr<ProtocolServer::DisownSharedBufferResponse> handle(const ProtocolServer::DisownSharedBuffer&) override; - HashMap<i32, RefPtr<SharedBuffer>> m_shared_buffers; + HashMap<i32, RefPtr<AK::SharedBuffer>> m_shared_buffers; }; |