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

Unified Diff: remoting/client/mouse_input_filter_unittest.cc

Issue 9646013: Add the plumbing that will carry a clipboard item from a chromoting client to a host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync, and make InputStub inherit from ClipboardStub. Created 8 years, 9 months 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/client/mouse_input_filter_unittest.cc
diff --git a/remoting/client/mouse_input_filter_unittest.cc b/remoting/client/mouse_input_filter_unittest.cc
index 8be19bc9b3c41f8894e570946e2815556527877e..ef2750fa0949be50b1b254c206d6c08d2738013d 100644
--- a/remoting/client/mouse_input_filter_unittest.cc
+++ b/remoting/client/mouse_input_filter_unittest.cc
@@ -22,6 +22,9 @@ class MockInputStub : public protocol::InputStub {
public:
MockInputStub() {}
+ // TODO(wez): Delete the next line when InputStub no longer inherits from
+ // ClipboardStub.
+ MOCK_METHOD1(InjectClipboardEvent, void(const protocol::ClipboardEvent&));
MOCK_METHOD1(InjectKeyEvent, void(const protocol::KeyEvent&));
MOCK_METHOD1(InjectMouseEvent, void(const protocol::MouseEvent&));
private:

Powered by Google App Engine
This is Rietveld 408576698