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

Unified Diff: net/http/http_stream_factory_impl_job.cc

Issue 1052743003: Move RC4 behind a fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make test not a no-op Created 5 years, 9 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
Index: net/http/http_stream_factory_impl_job.cc
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
index b539ac23bc140c90091f6c3de4419bafbfb21a2d..f1704dd5596970c29ad628f2c4a91be68b24095d 100644
--- a/net/http/http_stream_factory_impl_job.cc
+++ b/net/http/http_stream_factory_impl_job.cc
@@ -1279,6 +1279,9 @@ void HttpStreamFactoryImpl::Job::InitSSLConfig(
UMA_HISTOGRAM_ENUMERATION("Net.ConnectionUsedSSLVersionFallback",
fallback, FALLBACK_MAX);
+ UMA_HISTOGRAM_BOOLEAN("Net.ConnectionUsedSSLDeprecatedCipherFallback",
+ ssl_config->enable_deprecated_cipher_suites);
+
// We also wish to measure the amount of fallback connections for a host that
// we know implements TLS up to 1.2. Ideally there would be no fallback here
// but high numbers of SSLv3 would suggest that SSLv3 fallback is being

Powered by Google App Engine
This is Rietveld 408576698