Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Unified Diff: remoting/host/event_executor_win.h

Issue 5068001: Move move classes to the remoting::protocol namespace. Minor cleanups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes for windows Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/event_executor_win.h
diff --git a/remoting/host/event_executor_win.h b/remoting/host/event_executor_win.h
index b7be3c86ba9dcf78abeac4b18142ffbbf7ab1368..4ba4aadf0d2782b3c12383ae670e2a25b4f0d3c3 100644
--- a/remoting/host/event_executor_win.h
+++ b/remoting/host/event_executor_win.h
@@ -23,12 +23,12 @@ class EventExecutorWin : public protocol::InputStub {
EventExecutorWin(MessageLoop* message_loop, Capturer* capturer);
virtual ~EventExecutorWin();
- virtual void InjectKeyEvent(const KeyEvent* event, Task* done);
- virtual void InjectMouseEvent(const MouseEvent* event, Task* done);
+ virtual void InjectKeyEvent(const protocol::KeyEvent* event, Task* done);
+ virtual void InjectMouseEvent(const protocol::MouseEvent* event, Task* done);
private:
- void HandleKey(const KeyEvent* event);
- void HandleMouse(const MouseEvent* event);
+ void HandleKey(const protocol::KeyEvent* event);
+ void HandleMouse(const protocol::MouseEvent* event);
MessageLoop* message_loop_;
Capturer* capturer_;

Powered by Google App Engine
This is Rietveld 408576698