Index: net/base/ssl_config_service.cc |
diff --git a/net/base/ssl_config_service.cc b/net/base/ssl_config_service.cc |
index 94fa84c2b20229129230f5a8b4209c77ac46be13..2dbee568e06df678b4e75c4aa78a8895016851a1 100644 |
--- a/net/base/ssl_config_service.cc |
+++ b/net/base/ssl_config_service.cc |
@@ -65,7 +65,6 @@ SSLConfigService::SSLConfigService() |
} |
static bool g_cached_info_enabled = false; |
-static bool g_channel_id_trial = false; |
// GlobalCRLSet holds a reference to the global CRLSet. It simply wraps a lock |
// around a scoped_refptr so that getting a reference doesn't race with |
@@ -124,11 +123,6 @@ uint16 SSLConfigService::default_version_max() { |
return g_default_version_max; |
} |
-// static |
-void SSLConfigService::EnableChannelIDTrial() { |
- g_channel_id_trial = true; |
-} |
- |
void SSLConfigService::AddObserver(Observer* observer) { |
observer_list_.AddObserver(observer); |
} |
@@ -143,8 +137,6 @@ SSLConfigService::~SSLConfigService() { |
// static |
void SSLConfigService::SetSSLConfigFlags(SSLConfig* ssl_config) { |
ssl_config->cached_info_enabled = g_cached_info_enabled; |
- if (g_channel_id_trial) |
- ssl_config->channel_id_enabled = true; |
} |
void SSLConfigService::ProcessConfigUpdate(const SSLConfig& orig_config, |