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

Unified Diff: chrome/browser/extensions/extension_system_factory.cc

Issue 10626007: Move ExtensionSystem into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Master merge; moved class declaration 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_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
« no previous file with comments | « chrome/browser/extensions/extension_system_factory.h ('k') | chrome/browser/extensions/extension_ui_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698