| Index: remoting/protocol/host_stub.h
|
| diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h
|
| index e712146a11474390c8146ee7b11a529c73229964..83f8c144e3f18b4c46962fd97394643e3ea7227e 100644
|
| --- a/remoting/protocol/host_stub.h
|
| +++ b/remoting/protocol/host_stub.h
|
| @@ -16,6 +16,7 @@ namespace protocol {
|
|
|
| class ClientDimensions;
|
| class VideoControl;
|
| +class AudioControl;
|
|
|
| class HostStub {
|
| public:
|
| @@ -30,6 +31,10 @@ class HostStub {
|
| // video channel is supported.
|
| virtual void ControlVideo(const VideoControl& video_control) = 0;
|
|
|
| + // Configures audio properties. Currently only pausing & resuming the audio
|
| + // channel is supported.
|
| + virtual void ControlAudio(const AudioControl& audio_control) = 0;
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(HostStub);
|
| };
|
|
|