Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: talk/session/media/channelmanager.h

Issue 1528843005: Add support for GCM cipher suites from RFC 7714. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updates after feedback from Peter Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: talk/session/media/channelmanager.h
diff --git a/talk/session/media/channelmanager.h b/talk/session/media/channelmanager.h
index 2bc516bfaa36edfdb075795be10cec74583d1a7b..f542b0d5bd1294d44fe67e797626ccccaf92b021 100644
--- a/talk/session/media/channelmanager.h
+++ b/talk/session/media/channelmanager.h
@@ -132,6 +132,7 @@ class ChannelManager : public rtc::MessageHandler,
// 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 SetEnableGcmCryptoSuites(bool enable);
// Starts/stops the local microphone and enables polling of the input level.
bool capturing() const { return capturing_; }
@@ -229,6 +230,7 @@ class ChannelManager : public rtc::MessageHandler,
int audio_output_volume_;
VideoRenderer* local_renderer_;
bool enable_rtx_;
+ bool enable_gcm_crypto_suites_;
bool capturing_;
};

Powered by Google App Engine
This is Rietveld 408576698