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

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

Issue 10704023: Moved ExtensionPrefs and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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/extension_system.h
diff --git a/chrome/browser/extensions/extension_system.h b/chrome/browser/extensions/extension_system.h
index 23d228f4d3e9a89612bb435097a8c539cde3b006..b35af4126c1dd2d218368ca7e4911f5ccd476138 100644
--- a/chrome/browser/extensions/extension_system.h
+++ b/chrome/browser/extensions/extension_system.h
@@ -18,7 +18,6 @@ class ExtensionEventRouter;
class ExtensionInfoMap;
class ExtensionMessageService;
class ExtensionNavigationObserver;
-class ExtensionPrefs;
class ExtensionProcessManager;
class ExtensionService;
class Profile;
@@ -27,6 +26,7 @@ class UserScriptMaster;
namespace extensions {
class AlarmManager;
class Extension;
+class ExtensionPrefs;
class LazyBackgroundTaskQueue;
class ManagementPolicy;
class RulesRegistryService;
@@ -180,7 +180,7 @@ class ExtensionSystemImpl : public ExtensionSystem {
// The services that are shared between normal and incognito profiles.
scoped_ptr<extensions::StateStore> state_store_;
- scoped_ptr<ExtensionPrefs> extension_prefs_;
+ scoped_ptr<extensions::ExtensionPrefs> extension_prefs_;
// ExtensionService depends on the 2 above.
scoped_ptr<ExtensionService> extension_service_;
scoped_ptr<extensions::ManagementPolicy> management_policy_;

Powered by Google App Engine
This is Rietveld 408576698