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

Unified Diff: chrome/test/base/testing_profile.cc

Issue 10626007: Move ExtensionSystem into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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/test/base/testing_profile.cc
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
index c69447fa05f8cbd8e20c65c377baf1d2e99c62ca..f9941745f81ef76964f18fc98c34e944709e482e 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -446,19 +446,19 @@ VisitedLinkMaster* TestingProfile::GetVisitedLinkMaster() {
}
ExtensionService* TestingProfile::GetExtensionService() {
- return ExtensionSystem::Get(this)->extension_service();
+ return extensions::ExtensionSystem::Get(this)->extension_service();
}
UserScriptMaster* TestingProfile::GetUserScriptMaster() {
- return ExtensionSystem::Get(this)->user_script_master();
+ return extensions::ExtensionSystem::Get(this)->user_script_master();
}
ExtensionProcessManager* TestingProfile::GetExtensionProcessManager() {
- return ExtensionSystem::Get(this)->process_manager();
+ return extensions::ExtensionSystem::Get(this)->process_manager();
}
ExtensionEventRouter* TestingProfile::GetExtensionEventRouter() {
- return ExtensionSystem::Get(this)->event_router();
+ return extensions::ExtensionSystem::Get(this)->event_router();
}
void TestingProfile::SetExtensionSpecialStoragePolicy(
@@ -554,7 +554,7 @@ net::URLRequestContextGetter* TestingProfile::GetRequestContext() {
net::URLRequestContextGetter* TestingProfile::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);

Powered by Google App Engine
This is Rietveld 408576698