summaryrefslogtreecommitdiffstats
path: root/net/ssl/ssl_config_service.h
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-11 00:41:48 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-11 00:41:48 +0000
commit75404f6f4d32d4e23765e71a3782a235957b14e4 (patch)
tree1901d2b3f08fbf1afa0a68e83dd8831a33389586 /net/ssl/ssl_config_service.h
parent3d427fb6d3da1927e9dac29ec6d8b5c46e853d37 (diff)
downloadchromium_src-75404f6f4d32d4e23765e71a3782a235957b14e4.zip
chromium_src-75404f6f4d32d4e23765e71a3782a235957b14e4.tar.gz
chromium_src-75404f6f4d32d4e23765e71a3782a235957b14e4.tar.bz2
Remove vestigal traces of the TLS Cached Info Extension support
Chrome no longer carries the patch to NSS to enable this support; remove the traces that exist in Chrome to support it. BUG=none R=wtc TBR=brettw Review URL: https://codereview.chromium.org/122573004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244285 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ssl/ssl_config_service.h')
-rw-r--r--net/ssl/ssl_config_service.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/net/ssl/ssl_config_service.h b/net/ssl/ssl_config_service.h
index 0b19e30..08a59fd 100644
--- a/net/ssl/ssl_config_service.h
+++ b/net/ssl/ssl_config_service.h
@@ -96,7 +96,6 @@ struct NET_EXPORT SSLConfig {
// disable TLS_ECDH_ECDSA_WITH_RC4_128_SHA, specify 0xC002.
std::vector<uint16> disabled_cipher_suites;
- bool cached_info_enabled; // True if TLS cached info extension is enabled.
bool channel_id_enabled; // True if TLS channel ID extension is enabled.
bool false_start_enabled; // True if we'll use TLS False Start.
// True if the Certificate Transparency signed_certificate_timestamp
@@ -194,11 +193,6 @@ class NET_EXPORT SSLConfigService
static void SetCRLSet(scoped_refptr<CRLSet> crl_set);
static scoped_refptr<CRLSet> GetCRLSet();
- // Enables the TLS cached info extension, which allows the server to send
- // just a digest of its certificate chain.
- static void EnableCachedInfo();
- static bool cached_info_enabled();
-
// Gets the default minimum protocol version.
static uint16 default_version_min();
@@ -223,9 +217,6 @@ class NET_EXPORT SSLConfigService
virtual ~SSLConfigService();
- // SetFlags sets the values of several flags based on global configuration.
- static void SetSSLConfigFlags(SSLConfig* ssl_config);
-
// Process before/after config update.
void ProcessConfigUpdate(const SSLConfig& orig_config,
const SSLConfig& new_config);