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

Unified Diff: chrome/browser/profile_impl.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: reuse old DefaultPrefStore as InMemoryPrefStore 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/profile_impl.h
diff --git a/chrome/browser/profile_impl.h b/chrome/browser/profile_impl.h
index fdae9e2910b69cfd52cfdfb7638776c5c4a012d9..c26a87999c31092147cd07fa4d9475b3704faf82 100644
--- a/chrome/browser/profile_impl.h
+++ b/chrome/browser/profile_impl.h
@@ -19,6 +19,7 @@
#include "chrome/common/notification_registrar.h"
class PrefService;
+class ExtensionPrefs;
#if defined(OS_CHROMEOS)
namespace chromeos {
@@ -271,6 +272,10 @@ class ProfileImpl : public Profile,
scoped_refptr<ExtensionInfoMap> extension_info_map_;
+ // This is a temporary pointer that contains the ExtensionPrefs until their
+ // owner ship can be passed off to the ExtensionService
+ scoped_ptr<ExtensionPrefs> tmp_extension_prefs_;
Mattias Nissler (ping if slow) 2010/11/19 10:47:40 s/owner ship/ownership/ missing period
battre (please use the other) 2010/11/19 16:03:18 Done.
+
#if defined(OS_CHROMEOS)
scoped_ptr<chromeos::Preferences> chromeos_preferences_;

Powered by Google App Engine
This is Rietveld 408576698