Chromium Code Reviews| Index: chrome/browser/profiles/profile_impl.h |
| diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
| index ce29d280cf97538d1ebbc3e4c02b7a0a541c61b9..13ee7541f155dbec6b3698ff0775055a35342e96 100644 |
| --- a/chrome/browser/profiles/profile_impl.h |
| +++ b/chrome/browser/profiles/profile_impl.h |
| @@ -20,6 +20,7 @@ |
| class BackgroundModeManager; |
| class ExtensionPrefs; |
| +class ExtensionPrefValueMap; |
| class PrefService; |
| #if defined(OS_CHROMEOS) |
| @@ -144,6 +145,9 @@ class ProfileImpl : public Profile, |
| // SpellCheckHostObserver implementation. |
| virtual void SpellCheckHostInitialized(); |
| + protected: |
| + ExtensionPrefValueMap* GetExtensionPrefValueMap(); |
|
danno
2011/01/14 13:05:09
virtual, maybe private, again your call.
battre
2011/01/20 17:59:29
Made virtual, not private.
|
| + |
| private: |
| friend class Profile; |
| @@ -172,6 +176,7 @@ class ProfileImpl : public Profile, |
| FilePath path_; |
| FilePath base_cache_path_; |
| + scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
| // Keep prefs_ on top for destruction order because extension_prefs_, |
| // net_pref_observer_, web_resource_service_ and background_contents_service_ |
| // store pointers to prefs_ and shall be destructed first. |