diff options
Diffstat (limited to 'Servers/WindowServer/WSEventLoop.h')
-rw-r--r-- | Servers/WindowServer/WSEventLoop.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Servers/WindowServer/WSEventLoop.h b/Servers/WindowServer/WSEventLoop.h index 8c76a17efb..8935dd0264 100644 --- a/Servers/WindowServer/WSEventLoop.h +++ b/Servers/WindowServer/WSEventLoop.h @@ -2,6 +2,8 @@ #include <AK/ByteBuffer.h> #include <LibCore/CEventLoop.h> +#include <LibCore/CNotifier.h> +#include <LibCore/CLocalSocket.h> class WSClientConnection; struct WSAPI_ClientMessage; @@ -25,5 +27,6 @@ private: int m_keyboard_fd { -1 }; int m_mouse_fd { -1 }; - int m_server_fd { -1 }; + CLocalSocket m_server_sock; + OwnPtr<CNotifier> m_server_notifier; }; |