summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_system_factory.h
diff options
context:
space:
mode:
authorrdevlin.cronin@chromium.org <rdevlin.cronin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 20:43:59 +0000
committerrdevlin.cronin@chromium.org <rdevlin.cronin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 20:43:59 +0000
commitbd306725f180bfe32e51e90a0f02d91ec8c0c61a (patch)
tree5abce534971e600a323fb10880ca4349a0010fa3 /chrome/browser/extensions/extension_system_factory.h
parent02a283f68b0f53b5675ac857e4653c6068280adc (diff)
downloadchromium_src-bd306725f180bfe32e51e90a0f02d91ec8c0c61a.zip
chromium_src-bd306725f180bfe32e51e90a0f02d91ec8c0c61a.tar.gz
chromium_src-bd306725f180bfe32e51e90a0f02d91ec8c0c61a.tar.bz2
Move ExtensionSystem into extensions namespace
BUG=134017, 117261 TEST= Review URL: https://chromiumcodereview.appspot.com/10626007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146196 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_system_factory.h')
-rw-r--r--chrome/browser/extensions/extension_system_factory.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_system_factory.h b/chrome/browser/extensions/extension_system_factory.h
index 7a19ee5..2471a25 100644
--- a/chrome/browser/extensions/extension_system_factory.h
+++ b/chrome/browser/extensions/extension_system_factory.h
@@ -9,15 +9,18 @@
#include "chrome/browser/extensions/extension_system.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
-class ExtensionSystem;
class Profile;
class ProfileKeyedService;
+namespace extensions {
+class ExtensionSystem;
+
// ProfileKeyedServiceFactory for ExtensionSystemImpl::Shared.
// Should not be used except by ExtensionSystem(Factory).
class ExtensionSystemSharedFactory : public ProfileKeyedServiceFactory {
public:
- static ExtensionSystemImpl::Shared* GetForProfile(Profile* profile);
+ static ExtensionSystemImpl::Shared* GetForProfile(
+ Profile* profile);
static ExtensionSystemSharedFactory* GetInstance();
@@ -52,4 +55,6 @@ class ExtensionSystemFactory : public ProfileKeyedServiceFactory {
virtual bool ServiceIsCreatedWithProfile() OVERRIDE;
};
+} // namespace extensions
+
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_FACTORY_H_