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

Unified Diff: remoting/protocol/protocol_mock_objects.h

Issue 13932020: Set the initial resolution of an RDP session to the client screen resolution if it is available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Clang Created 7 years, 8 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
« no previous file with comments | « remoting/protocol/host_stub.h ('k') | remoting/protocol/session_config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/protocol_mock_objects.h
diff --git a/remoting/protocol/protocol_mock_objects.h b/remoting/protocol/protocol_mock_objects.h
index 9d1e4a225d414fbc0bb91ea77375a1f0dbde4b4e..7ccf664d8c63ef0f598e30f5ccf1c8d4f2ceece0 100644
--- a/remoting/protocol/protocol_mock_objects.h
+++ b/remoting/protocol/protocol_mock_objects.h
@@ -104,10 +104,9 @@ class MockHostStub : public HostStub {
MOCK_METHOD1(NotifyClientResolution,
void(const ClientResolution& resolution));
- MOCK_METHOD1(ControlVideo,
- void(const VideoControl& video_control));
- MOCK_METHOD1(ControlAudio,
- void(const AudioControl& audio_control));
+ MOCK_METHOD1(ControlVideo, void(const VideoControl& video_control));
+ MOCK_METHOD1(ControlAudio, void(const AudioControl& audio_control));
+ MOCK_METHOD1(SetCapabilities, void(const Capabilities& capabilities));
private:
DISALLOW_COPY_AND_ASSIGN(MockHostStub);
@@ -118,6 +117,9 @@ class MockClientStub : public ClientStub {
MockClientStub();
virtual ~MockClientStub();
+ // ClientStub mock implementation.
+ MOCK_METHOD1(SetCapabilities, void(const Capabilities& capabilities));
+
// ClipboardStub mock implementation.
MOCK_METHOD1(InjectClipboardEvent, void(const ClipboardEvent& event));
« no previous file with comments | « remoting/protocol/host_stub.h ('k') | remoting/protocol/session_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698