Remove unused "crypto_options_" field.

It is not used anywhere and looks like a leftover of
https://codereview.webrtc.org/2815513012/

BUG=None

Review-Url: https://codereview.webrtc.org/2958683002
Cr-Commit-Position: refs/heads/master@{#18760}
This commit is contained in:
jbauch 2017-06-26 04:07:52 -07:00 committed by Commit Bot
parent 05e1f2e9ae
commit 2f45b6b15f
2 changed files with 0 additions and 3 deletions

View File

@ -53,7 +53,6 @@ void ChannelManager::Construct(std::unique_ptr<MediaEngineInterface> me,
network_thread_ = network_thread;
capturing_ = false;
enable_rtx_ = false;
crypto_options_ = rtc::CryptoOptions::NoGcm();
}
ChannelManager::~ChannelManager() {

View File

@ -217,8 +217,6 @@ class ChannelManager {
RtpDataChannels data_channels_;
bool enable_rtx_;
rtc::CryptoOptions crypto_options_;
bool capturing_;
};