| Index: remoting/protocol/host_stub.h
|
| diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h
|
| index b66558fc2a622432b977efbb82440eed9b0098d7..03f3b0857bda3b8b325992869d1b62fb7933f2d7 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() {}
|
|
|
|
|