Index: chrome/browser/extensions/extension_system_factory.cc |
diff --git a/chrome/browser/extensions/extension_system_factory.cc b/chrome/browser/extensions/extension_system_factory.cc |
index 8d162ed072d71dc37281f4135d353e500b374b13..84458c4cc7c115f1c9b49455aeb592f91aef21a3 100644 |
--- a/chrome/browser/extensions/extension_system_factory.cc |
+++ b/chrome/browser/extensions/extension_system_factory.cc |
@@ -14,11 +14,13 @@ |
#include "chrome/browser/themes/theme_service_factory.h" |
#include "chrome/browser/ui/global_error/global_error_service_factory.h" |
+namespace extensions { |
+ |
// ExtensionSystemSharedFactory |
// static |
-ExtensionSystemImpl::Shared* ExtensionSystemSharedFactory::GetForProfile( |
- Profile* profile) { |
+ExtensionSystemImpl::Shared* |
+ExtensionSystemSharedFactory::GetForProfile(Profile* profile) { |
return static_cast<ExtensionSystemImpl::Shared*>( |
GetInstance()->GetServiceForProfile(profile, true)); |
} |
@@ -89,3 +91,5 @@ bool ExtensionSystemFactory::ServiceHasOwnInstanceInIncognito() { |
bool ExtensionSystemFactory::ServiceIsCreatedWithProfile() { |
return true; |
} |
+ |
+} // namespace extensions |