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

Unified Diff: net/base/ssl_config_service.h

Issue 11876044: Remove support for 'system' SSL on Mac (SecureTransport) and Win (SChannel) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 7 years, 11 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/base/ssl_config_service.h
diff --git a/net/base/ssl_config_service.h b/net/base/ssl_config_service.h
index 4e3c768342e4e23c8bf70d33fb8c0f62da06c181..e87b6333559d9427f3f5c08b0ba6ac0e177869b0 100644
--- a/net/base/ssl_config_service.h
+++ b/net/base/ssl_config_service.h
@@ -85,8 +85,6 @@ struct NET_EXPORT SSLConfig {
// first uint8 occupying the most significant byte.
// Ex: To disable TLS_RSA_WITH_RC4_128_MD5, specify 0x0004, while to
// disable TLS_ECDH_ECDSA_WITH_RC4_128_SHA, specify 0xC002.
- //
- // Note: Not implemented when using Schannel/SSLClientSocketWin.
std::vector<uint16> disabled_cipher_suites;
bool cached_info_enabled; // True if TLS cached info extension is enabled.
@@ -179,8 +177,7 @@ class NET_EXPORT SSLConfigService
// Gets the default minimum protocol version.
static uint16 default_version_min();
- // Sets and gets the default maximum protocol version.
- static void SetDefaultVersionMax(uint16 version_max);
+ // Gets the default maximum protocol version.
static uint16 default_version_max();
// Is SNI available in this configuration?

Powered by Google App Engine
This is Rietveld 408576698