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

Unified Diff: chrome/browser/extensions/test_extension_prefs.h

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed whitespaces in mac files 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/extensions/test_extension_prefs.h
diff --git a/chrome/browser/extensions/test_extension_prefs.h b/chrome/browser/extensions/test_extension_prefs.h
index 3220d7a263bdf34792ddecc54484364135217d3c..1fa2351203d3a46fcfdf58cb1b022aa06270dd51 100644
--- a/chrome/browser/extensions/test_extension_prefs.h
+++ b/chrome/browser/extensions/test_extension_prefs.h
@@ -14,6 +14,7 @@
class DictionaryValue;
class ExtensionPrefs;
+class ExtensionPrefValueMap;
class PrefService;
// This is a test class intended to make it easier to work with ExtensionPrefs
@@ -44,12 +45,15 @@ class TestExtensionPrefs {
// assigned.
std::string AddExtensionAndReturnId(std::string name);
+ PrefService* CreateIncognitoPrefService() const;
+
protected:
ScopedTempDir temp_dir_;
FilePath preferences_file_;
FilePath extensions_dir_;
scoped_ptr<PrefService> pref_service_;
scoped_ptr<ExtensionPrefs> prefs_;
+ scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_;
private:
DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs);

Powered by Google App Engine
This is Rietveld 408576698