| Index: talk/session/media/channelmanager.h
|
| diff --git a/talk/session/media/channelmanager.h b/talk/session/media/channelmanager.h
|
| index de8555208fc03376a476a22abb990c9109580338..74c02d4224ca4bfe31f1af2ec4bdb26ac859dba6 100644
|
| --- a/talk/session/media/channelmanager.h
|
| +++ b/talk/session/media/channelmanager.h
|
| @@ -102,7 +102,8 @@ class ChannelManager : public rtc::MessageHandler,
|
| TransportController* transport_controller,
|
| const std::string& content_name,
|
| bool rtcp,
|
| - const AudioOptions& options);
|
| + const MediaChannelOptions& options,
|
| + const AudioOptions& audio_options);
|
| // Destroys a voice channel created with the Create API.
|
| void DestroyVoiceChannel(VoiceChannel* voice_channel);
|
| // Creates a video channel, synced with the specified voice channel, and
|
| @@ -112,7 +113,8 @@ class ChannelManager : public rtc::MessageHandler,
|
| TransportController* transport_controller,
|
| const std::string& content_name,
|
| bool rtcp,
|
| - const VideoOptions& options);
|
| + const MediaChannelOptions& options,
|
| + const VideoOptions& video_options);
|
| // Destroys a video channel created with the Create API.
|
| void DestroyVideoChannel(VideoChannel* video_channel);
|
| DataChannel* CreateDataChannel(TransportController* transport_controller,
|
| @@ -197,14 +199,16 @@ class ChannelManager : public rtc::MessageHandler,
|
| TransportController* transport_controller,
|
| const std::string& content_name,
|
| bool rtcp,
|
| - const AudioOptions& options);
|
| + const MediaChannelOptions& options,
|
| + const AudioOptions& audio_options);
|
| void DestroyVoiceChannel_w(VoiceChannel* voice_channel);
|
| VideoChannel* CreateVideoChannel_w(
|
| webrtc::MediaControllerInterface* media_controller,
|
| TransportController* transport_controller,
|
| const std::string& content_name,
|
| bool rtcp,
|
| - const VideoOptions& options);
|
| + const MediaChannelOptions& options,
|
| + const VideoOptions& video_options);
|
| void DestroyVideoChannel_w(VideoChannel* video_channel);
|
| DataChannel* CreateDataChannel_w(TransportController* transport_controller,
|
| const std::string& content_name,
|
|
|