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

Unified Diff: net/socket/ssl_client_socket_impl.cc

Issue 2858693003: Remove the deprecated cipher fallback. (Closed)
Patch Set: rebase Created 3 years, 7 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/socket/ssl_client_socket_impl.cc
diff --git a/net/socket/ssl_client_socket_impl.cc b/net/socket/ssl_client_socket_impl.cc
index fe5aabdd4d3f06a9e0a6f9f4c67d638ccb82c2af..d71a0c2de7ee6103a3ee4ee5ced88cdf7d5fef53 100644
--- a/net/socket/ssl_client_socket_impl.cc
+++ b/net/socket/ssl_client_socket_impl.cc
@@ -1721,7 +1721,6 @@ std::string SSLClientSocketImpl::GetSessionCacheKey() const {
result.append(ssl_session_cache_shard_);
result.push_back('/');
- result.push_back(ssl_config_.deprecated_cipher_suites_enabled ? '1' : '0');
result.push_back(ssl_config_.channel_id_enabled ? '1' : '0');
result.push_back(ssl_config_.version_interference_probe ? '1' : '0');
return result;

Powered by Google App Engine
This is Rietveld 408576698