summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net
diff options
context:
space:
mode:
authorhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-03 09:17:12 +0000
committerhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-03 09:17:12 +0000
commit954a26f4065f784a692f482759733cd8c99babcd (patch)
tree2052b9a7831518141a8db9884014f719f544d670 /chrome/browser/net
parentdfe3c831a0f1add3048a64d98c0d992a1edb5c67 (diff)
downloadchromium_src-954a26f4065f784a692f482759733cd8c99babcd.zip
chromium_src-954a26f4065f784a692f482759733cd8c99babcd.tar.gz
chromium_src-954a26f4065f784a692f482759733cd8c99babcd.tar.bz2
SSLConfigServiceManagerPref: small fix to work around Clang problem.
SSLConfigServiceManagerPref is a friend of SSLConfigServicePref, which inherits from net::SSLConfigService. So technically, it should have access to the protected static member net::SSLConfigService::SetSSLConfigFlags, but Clang does not currently support this. As a work-around, make the call through SSLConfigServicePref instead. BUG=none TEST=none Review URL: http://codereview.chromium.org/3298007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58467 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net')
-rw-r--r--chrome/browser/net/ssl_config_service_manager_pref.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/net/ssl_config_service_manager_pref.cc b/chrome/browser/net/ssl_config_service_manager_pref.cc
index a08e50d..e1893a4 100644
--- a/chrome/browser/net/ssl_config_service_manager_pref.cc
+++ b/chrome/browser/net/ssl_config_service_manager_pref.cc
@@ -145,7 +145,7 @@ void SSLConfigServiceManagerPref::GetSSLConfigFromPrefs(
config->ssl2_enabled = ssl2_enabled_.GetValue();
config->ssl3_enabled = ssl3_enabled_.GetValue();
config->tls1_enabled = tls1_enabled_.GetValue();
- net::SSLConfigService::SetSSLConfigFlags(config);
+ SSLConfigServicePref::SetSSLConfigFlags(config);
}
////////////////////////////////////////////////////////////////////////////////