diff options
Diffstat (limited to 'remoting/protocol/host_stub.h')
-rw-r--r-- | remoting/protocol/host_stub.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h index b66558f..03f3b08 100644 --- a/remoting/protocol/host_stub.h +++ b/remoting/protocol/host_stub.h @@ -14,6 +14,7 @@ namespace remoting { namespace protocol { +class Capabilities; class ClientResolution; class VideoControl; class AudioControl; @@ -34,6 +35,9 @@ class HostStub { // channel is supported. virtual void ControlAudio(const AudioControl& audio_control) = 0; + // Passes the set of capabilities supported by the client to the host. + virtual void SetCapabilities(const Capabilities& capabilities) = 0; + protected: virtual ~HostStub() {} |