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

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

Issue 5213002: Fix for Bug 50726 "Save extension list and "winning" prefs from extensions" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed comments, moved ExtensionPrefStore reference to Profile Created 10 years, 1 month 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 cb723b23e6c6de47368a5bf4376d19a60da4d8ef..f1e84dd8296b2dca0e9acde943707ff9a146f4f1 100644
--- a/chrome/browser/extensions/test_extension_prefs.h
+++ b/chrome/browser/extensions/test_extension_prefs.h
@@ -15,7 +15,7 @@
class DictionaryValue;
class ExtensionPrefs;
class PrefService;
-
+class Profile;
// This is a test class intended to make it easier to work with ExtensionPrefs
// in tests.
@@ -25,7 +25,7 @@ class TestExtensionPrefs {
virtual ~TestExtensionPrefs();
ExtensionPrefs* prefs() { return prefs_.get(); }
- PrefService* pref_service() { return pref_service_.get(); }
+ PrefService* pref_service() { return pref_service_; }
const FilePath& temp_dir() const { return temp_dir_.path(); }
// This will cause the ExtensionPrefs to be deleted and recreated, based on
@@ -49,8 +49,9 @@ class TestExtensionPrefs {
ScopedTempDir temp_dir_;
FilePath preferences_file_;
FilePath extensions_dir_;
- scoped_ptr<PrefService> pref_service_;
+ PrefService* pref_service_; // Weak pointer, owned by profile_.
scoped_ptr<ExtensionPrefs> prefs_;
+ scoped_ptr<Profile> profile_;
private:
DISALLOW_COPY_AND_ASSIGN(TestExtensionPrefs);

Powered by Google App Engine
This is Rietveld 408576698