diff options
Diffstat (limited to 'remoting/client/input_handler.h')
-rw-r--r-- | remoting/client/input_handler.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/remoting/client/input_handler.h b/remoting/client/input_handler.h index 6f2e376..91af063 100644 --- a/remoting/client/input_handler.h +++ b/remoting/client/input_handler.h @@ -13,12 +13,15 @@ namespace remoting { class ClientContext; class ChromotingView; + +namespace protocol { class HostConnection; +} // namespace protocol class InputHandler { public: InputHandler(ClientContext* context, - HostConnection* connection, + protocol::HostConnection* connection, ChromotingView* view); virtual ~InputHandler() {} @@ -30,7 +33,7 @@ class InputHandler { void SendMouseButtonEvent(bool down, MouseButton button); ClientContext* context_; - HostConnection* connection_; + protocol::HostConnection* connection_; ChromotingView* view_; private: |