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

Unified Diff: chrome/browser/profiles/off_the_record_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
Index: chrome/browser/profiles/off_the_record_profile_impl.cc
diff --git a/chrome/browser/profiles/off_the_record_profile_impl.cc b/chrome/browser/profiles/off_the_record_profile_impl.cc
index ace07a5bc83c0a08db044973749b295b571e7133..90359cf02a3f76966025835552175b4eeb79a11c 100644
--- a/chrome/browser/profiles/off_the_record_profile_impl.cc
+++ b/chrome/browser/profiles/off_the_record_profile_impl.cc
@@ -120,7 +120,7 @@ OffTheRecordProfileImpl::~OffTheRecordProfileImpl() {
io_data_.GetResourceContextNoInit());
ExtensionService* extension_service =
- ExtensionSystem::Get(this)->extension_service();
+ extensions::ExtensionSystem::Get(this)->extension_service();
if (extension_service && extension_service->extensions_enabled()) {
extension_service->extension_prefs()->
ClearIncognitoSessionOnlyContentSettings();
@@ -191,20 +191,20 @@ VisitedLinkMaster* OffTheRecordProfileImpl::GetVisitedLinkMaster() {
}
ExtensionService* OffTheRecordProfileImpl::GetExtensionService() {
- return ExtensionSystem::Get(this)->extension_service();
+ return extensions::ExtensionSystem::Get(this)->extension_service();
}
UserScriptMaster* OffTheRecordProfileImpl::GetUserScriptMaster() {
- return ExtensionSystem::Get(this)->user_script_master();
+ return extensions::ExtensionSystem::Get(this)->user_script_master();
}
ExtensionProcessManager*
OffTheRecordProfileImpl::GetExtensionProcessManager() {
- return ExtensionSystem::Get(this)->process_manager();
+ return extensions::ExtensionSystem::Get(this)->process_manager();
}
ExtensionEventRouter* OffTheRecordProfileImpl::GetExtensionEventRouter() {
- return ExtensionSystem::Get(this)->event_router();
+ return extensions::ExtensionSystem::Get(this)->event_router();
}
ExtensionSpecialStoragePolicy*
« no previous file with comments | « chrome/browser/prerender/prerender_manager_factory.cc ('k') | chrome/browser/profiles/profile_dependency_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698