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

Unified Diff: chrome/browser/profiles/profile_impl.h

Issue 1320533007: Componentize ssl_config_service_manager_pref.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added OWNERS and updated gypi type Created 5 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/profiles/profile_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index 8a39d2adc33096a73a61e47032ae3add77824c32..26a7e77b298fa93cfff8551a0a615afa25d3faf0 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -25,7 +25,6 @@ class NetPrefObserver;
class PrefService;
class PrefServiceSyncable;
class ShortcutsBackend;
-class SSLConfigServiceManager;
class TrackedPreferenceValidationDelegate;
#if defined(OS_CHROMEOS)
@@ -55,6 +54,10 @@ class ProfilePolicyConnector;
class SchemaRegistryService;
}
+namespace ssl_config {
+class SSLConfigServiceManager;
+}
+
namespace user_prefs {
class refRegistrySyncable;
}
@@ -232,7 +235,7 @@ class ProfileImpl : public Profile {
extension_special_storage_policy_;
#endif
scoped_ptr<NetPrefObserver> net_pref_observer_;
- scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_;
+ scoped_ptr<ssl_config::SSLConfigServiceManager> ssl_config_service_manager_;
scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
scoped_refptr<ShortcutsBackend> shortcuts_backend_;

Powered by Google App Engine
This is Rietveld 408576698