diff options
author | rtenneti@google.com <rtenneti@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 20:23:51 +0000 |
---|---|---|
committer | rtenneti@google.com <rtenneti@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 20:23:51 +0000 |
commit | f242f222bbba36f1df1392ddf0717c4a584c286f (patch) | |
tree | 3445537290cebde0f35165637ee6bcb8ed5ae364 /chrome/browser/net/ssl_config_service_manager.h | |
parent | a984bdf00f45dd618396e9c569545c1a9073ace6 (diff) | |
download | chromium_src-f242f222bbba36f1df1392ddf0717c4a584c286f.zip chromium_src-f242f222bbba36f1df1392ddf0717c4a584c286f.tar.gz chromium_src-f242f222bbba36f1df1392ddf0717c4a584c286f.tar.bz2 |
Changes to SSLConfigServicePref to use preferences from
Local State rather than user preferences on linux. SSL
settings will apply to all profiles. This change impacts
SSL3, TLS1 and Cert revocation enabled check boxes.
BUG=67622
TEST=Options UI for security settings on all platforms.
R=wtc,mattm
Review URL: http://codereview.chromium.org/6646023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/ssl_config_service_manager.h')
-rw-r--r-- | chrome/browser/net/ssl_config_service_manager.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/chrome/browser/net/ssl_config_service_manager.h b/chrome/browser/net/ssl_config_service_manager.h index 750c5d8..2d734d4 100644 --- a/chrome/browser/net/ssl_config_service_manager.h +++ b/chrome/browser/net/ssl_config_service_manager.h @@ -10,15 +10,20 @@ namespace net { class SSLConfigService; } // namespace net -class Profile; +class PrefService; // An interface for creating SSLConfigService objects for the current platform. class SSLConfigServiceManager { public: // Create an instance of the default SSLConfigServiceManager for the current - // platform. The lifetime of the profile must be longer than that of the - // manager. - static SSLConfigServiceManager* CreateDefaultManager(Profile* profile); + // platform. The lifetime of the PrefService objects must be longer than that + // of the manager. On Linux, get SSL preferences from local_state object. If + // SSL preferences don't exist in local_state object, then get the data from + // user_prefs object and migrate it to local_state object and then delete the + // data from user_prefs object. + static SSLConfigServiceManager* CreateDefaultManager( + PrefService* user_prefs, + PrefService* local_state); virtual ~SSLConfigServiceManager() {} |