Chromium Code Reviews| Index: webrtc/pc/channelmanager.h |
| diff --git a/webrtc/pc/channelmanager.h b/webrtc/pc/channelmanager.h |
| index 72a2f056b5a4c0b6bb797f1a5792f575bb8a9ee3..62c0624b2747705bffd9ae6158933425a22d3f58 100644 |
| --- a/webrtc/pc/channelmanager.h |
| +++ b/webrtc/pc/channelmanager.h |
| @@ -111,6 +111,7 @@ class ChannelManager { |
| // RTX will be enabled/disabled in engines that support it. The supporting |
| // engines will start offering an RTX codec. Must be called before Init(). |
| bool SetVideoRtxEnabled(bool enable); |
| + bool SetCryptoOptions(const rtc::CryptoOptions& crypto_options); |
| // Starts/stops the local microphone and enables polling of the input level. |
| bool capturing() const { return capturing_; } |
| @@ -174,6 +175,7 @@ class ChannelManager { |
| int audio_output_volume_; |
| bool enable_rtx_; |
| + rtc::CryptoOptions crypto_options_; |
|
mattdr
2016/05/06 22:34:14
Again, I'd prefer to have a more explicit default
joachim
2016/05/09 23:21:40
Done.
|
| bool capturing_; |
| }; |