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

Unified Diff: chrome/browser/net/ssl_config_service_manager.h

Issue 10917182: Disable TLS channel id if cookies are disabled or third-party cookies are blocked. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build warning Created 8 years, 3 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: chrome/browser/net/ssl_config_service_manager.h
diff --git a/chrome/browser/net/ssl_config_service_manager.h b/chrome/browser/net/ssl_config_service_manager.h
index f3b30523ded2d64648d0564de1b6f019afff3586..3acbe9b7c7c3389c99b4ff3e873a42af36a3f305 100644
--- a/chrome/browser/net/ssl_config_service_manager.h
+++ b/chrome/browser/net/ssl_config_service_manager.h
@@ -16,11 +16,12 @@ class SSLConfigServiceManager {
public:
// Create an instance of the SSLConfigServiceManager. The lifetime of the
// PrefService objects must be longer than that of the manager. Get SSL
- // preferences from local_state object.
+ // preferences from local_state object. The user_prefs may be NULL if this
+ // SSLConfigServiceManager is not associated with a profile.
static SSLConfigServiceManager* CreateDefaultManager(
- PrefService* local_state);
+ PrefService* local_state, PrefService* user_prefs);
- static void RegisterPrefs(PrefService* prefs);
+ static void RegisterPrefs(PrefService* local_state);
virtual ~SSLConfigServiceManager() {}

Powered by Google App Engine
This is Rietveld 408576698