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

Unified Diff: remoting/protocol/client_stub.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/client_control_dispatcher.cc ('k') | remoting/protocol/host_control_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_stub.h
diff --git a/remoting/protocol/client_stub.h b/remoting/protocol/client_stub.h
index ed4681d42c459e81648aa1ac2cad8181b96cd768..e3574481a17092b1c5f22fd344294b20e21c3db6 100644
--- a/remoting/protocol/client_stub.h
+++ b/remoting/protocol/client_stub.h
@@ -17,14 +17,16 @@
namespace remoting {
namespace protocol {
+class Capabilities;
+
class ClientStub : public ClipboardStub,
public CursorShapeStub {
public:
ClientStub() {}
virtual ~ClientStub() {}
- // Currently we don't use the control channel for anything. Add new
- // message handlers here when necessary.
+ // Passes the set of capabilities supported by the host to the client.
+ virtual void SetCapabilities(const Capabilities& capabilities) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(ClientStub);
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/host_control_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698