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

Unified Diff: chrome/browser/profiles/profile_impl.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
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index d77edf8ec9633d8e0c64750bb007a9dd9b2f3034..35bb58fc16cf5866ef1c927725d6916c30f20750 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -606,19 +606,19 @@ VisitedLinkMaster* ProfileImpl::GetVisitedLinkMaster() {
}
ExtensionService* ProfileImpl::GetExtensionService() {
- return ExtensionSystem::Get(this)->extension_service();
+ return extensions::ExtensionSystem::Get(this)->extension_service();
}
UserScriptMaster* ProfileImpl::GetUserScriptMaster() {
- return ExtensionSystem::Get(this)->user_script_master();
+ return extensions::ExtensionSystem::Get(this)->user_script_master();
}
ExtensionProcessManager* ProfileImpl::GetExtensionProcessManager() {
- return ExtensionSystem::Get(this)->process_manager();
+ return extensions::ExtensionSystem::Get(this)->process_manager();
}
ExtensionEventRouter* ProfileImpl::GetExtensionEventRouter() {
- return ExtensionSystem::Get(this)->event_router();
+ return extensions::ExtensionSystem::Get(this)->event_router();
}
ExtensionSpecialStoragePolicy*
@@ -714,7 +714,7 @@ net::URLRequestContextGetter* ProfileImpl::GetRequestContext() {
net::URLRequestContextGetter* ProfileImpl::GetRequestContextForRenderProcess(
int renderer_child_id) {
ExtensionService* extension_service =
- ExtensionSystem::Get(this)->extension_service();
+ extensions::ExtensionSystem::Get(this)->extension_service();
if (extension_service) {
const extensions::Extension* installed_app = extension_service->
GetInstalledAppForRenderer(renderer_child_id);
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698