| Index: chrome/browser/profiles/profile_impl.h
|
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
|
| index 6c7a0ea1a9a69ab007f026f81cf6b2ef2ff0ab0a..961e1d07fa45021b338651938e0d2127f5686e96 100644
|
| --- a/chrome/browser/profiles/profile_impl.h
|
| +++ b/chrome/browser/profiles/profile_impl.h
|
| @@ -21,6 +21,7 @@
|
|
|
| class ExtensionPrefs;
|
| class ExtensionPrefValueMap;
|
| +class ExtensionContentSettingsStore;
|
| class PrefService;
|
|
|
| #if defined(OS_CHROMEOS)
|
| @@ -178,12 +179,15 @@ class ProfileImpl : public Profile,
|
|
|
| ExtensionPrefValueMap* GetExtensionPrefValueMap();
|
|
|
| + ExtensionContentSettingsStore* GetExtensionContentSettingsStore();
|
| +
|
| NotificationRegistrar registrar_;
|
| PrefChangeRegistrar pref_change_registrar_;
|
|
|
| FilePath path_;
|
| FilePath base_cache_path_;
|
| scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_;
|
| + scoped_ptr<ExtensionContentSettingsStore> extension_content_settings_store_;
|
| // Keep |prefs_| on top for destruction order because |extension_prefs_|,
|
| // |net_pref_observer_|, |web_resource_service_|, and |io_data_| store
|
| // pointers to |prefs_| and shall be destructed first.
|
|
|