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

Unified Diff: remoting/protocol/input_stub.h

Issue 4726003: Implement InputStub in the host side for chromoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed 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/protocol/input_stub.h
diff --git a/remoting/protocol/input_stub.h b/remoting/protocol/input_stub.h
index 201dda334b818ec55f58b555b19c7d2194f38578..c36ff07b5868dbb726ad098caed165145391f0af 100644
--- a/remoting/protocol/input_stub.h
+++ b/remoting/protocol/input_stub.h
@@ -22,8 +22,8 @@ class InputStub {
InputStub() {}
virtual ~InputStub() {}
- virtual void InjectKeyEvent(const KeyEvent& event, Task* done) = 0;
- virtual void InjectMouseEvent(const MouseEvent& event, Task* done) = 0;
+ virtual void InjectKeyEvent(const KeyEvent* event, Task* done) = 0;
+ virtual void InjectMouseEvent(const MouseEvent* event, Task* done) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(InputStub);

Powered by Google App Engine
This is Rietveld 408576698