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

Unified Diff: content/renderer/media/webrtc/peer_connection_dependency_factory.cc

Issue 2385623003: Unwind WebRTC DTLS 1.2 flag and field trial. (Closed)
Patch Set: removed explicit DTLS 1.2 setting in favor of default Created 4 years, 2 months 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
« no previous file with comments | « content/public/common/content_switches.cc ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webrtc/peer_connection_dependency_factory.cc
diff --git a/content/renderer/media/webrtc/peer_connection_dependency_factory.cc b/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
index d98b2ac06daea95a5e831306093058b153718064..df31b7cdbf2fa37ce47435d0d500307e256c468f 100644
--- a/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
+++ b/content/renderer/media/webrtc/peer_connection_dependency_factory.cc
@@ -257,13 +257,6 @@ void PeerConnectionDependencyFactory::InitializeSignalingThread(
factory_options.disable_encryption =
cmd_line->HasSwitch(switches::kDisableWebRtcEncryption);
- // DTLS 1.2 is the default now but could be changed to 1.0 by the experiment.
- factory_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_12;
- std::string group_name =
- base::FieldTrialList::FindFullName("WebRTC-PeerConnectionDTLS1.2");
- if (StartsWith(group_name, "Control", base::CompareCase::SENSITIVE))
- factory_options.ssl_max_version = rtc::SSL_PROTOCOL_DTLS_10;
-
pc_factory_->SetOptions(factory_options);
event->Signal();
« no previous file with comments | « content/public/common/content_switches.cc ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698