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

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

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 9 years, 11 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 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.

Powered by Google App Engine
This is Rietveld 408576698