diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-29 21:56:12 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-29 21:56:12 +0000 |
commit | 65f86878792c6e8bb5b78e98ed96dd99ce2c30bb (patch) | |
tree | b0c3a97fd2250b3fdbd254a4dc82c02c08bb04f4 /remoting/host/event_executor_win.h | |
parent | bfc031f0f5f833f293b489bf1a2d1c873341fdda (diff) | |
download | chromium_src-65f86878792c6e8bb5b78e98ed96dd99ce2c30bb.zip chromium_src-65f86878792c6e8bb5b78e98ed96dd99ce2c30bb.tar.gz chromium_src-65f86878792c6e8bb5b78e98ed96dd99ce2c30bb.tar.bz2 |
Hook up client events to new protocol stubs.
Patch by garykac@chromium.com.
Original review: http://codereview.chromium.org/5062001
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/5345007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67594 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/event_executor_win.h')
-rw-r--r-- | remoting/host/event_executor_win.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/remoting/host/event_executor_win.h b/remoting/host/event_executor_win.h index 3e2ddc6..b7be3c8 100644 --- a/remoting/host/event_executor_win.h +++ b/remoting/host/event_executor_win.h @@ -15,11 +15,7 @@ namespace remoting { -class KeyEvent; -class MouseDownEvent; -class MouseSetPositionEvent; -class MouseUpEvent; -class MouseWheelEvent; +class EventExecutorWinPimpl; // A class to generate events on Windows. class EventExecutorWin : public protocol::InputStub { @@ -31,11 +27,8 @@ class EventExecutorWin : public protocol::InputStub { virtual void InjectMouseEvent(const MouseEvent* event, Task* done); private: - void HandleMouseSetPosition(const MouseSetPositionEvent& event); - void HandleMouseWheel(const MouseWheelEvent& event); - void HandleMouseButtonDown(const MouseDownEvent& event); - void HandleMouseButtonUp(const MouseUpEvent& event); - void HandleKey(const KeyEvent& event); + void HandleKey(const KeyEvent* event); + void HandleMouse(const MouseEvent* event); MessageLoop* message_loop_; Capturer* capturer_; |