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

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: Temporary hack to fix regression in unit tests 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 b5fd6f8f16ee3ff8b6129cbb19d38669810e58f2..e9115c6132ed5415e6f9390fecd68ad91a196fc6 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 {
@@ -276,6 +277,10 @@ class ProfileImpl : public Profile,
scoped_ptr<policy::DeviceManagementPolicyProvider>
device_management_policy_provider_;
+ // This is a temporary pointer that contains the ExtensionPrefs until their
+ // ownership can be passed off to the ExtensionService.
+ scoped_ptr<ExtensionPrefs> tmp_extension_prefs_;
+
#if defined(OS_CHROMEOS)
scoped_ptr<chromeos::Preferences> chromeos_preferences_;

Powered by Google App Engine
This is Rietveld 408576698