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

Unified Diff: chrome/browser/autocomplete/extension_app_provider.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/autocomplete/extension_app_provider.cc
diff --git a/chrome/browser/autocomplete/extension_app_provider.cc b/chrome/browser/autocomplete/extension_app_provider.cc
index 6af0b5aafd87729b4adc6a15a5e74308b84b3d22..5c91c84295654e2c12bea73984b78ed0d2cca9c3 100644
--- a/chrome/browser/autocomplete/extension_app_provider.cc
+++ b/chrome/browser/autocomplete/extension_app_provider.cc
@@ -42,7 +42,8 @@ void ExtensionAppProvider::LaunchAppFromOmnibox(
Profile* profile,
WindowOpenDisposition disposition) {
ExtensionService* service =
- ExtensionSystemFactory::GetForProfile(profile)->extension_service();
+ extensions::ExtensionSystemFactory::GetForProfile(profile)->
+ extension_service();
const extensions::Extension* extension =
service->GetInstalledApp(match.destination_url);
// While the Omnibox popup is open, the extension can be updated, changing
@@ -149,7 +150,8 @@ ExtensionAppProvider::~ExtensionAppProvider() {
void ExtensionAppProvider::RefreshAppList() {
ExtensionService* extension_service =
- ExtensionSystemFactory::GetForProfile(profile_)->extension_service();
+ extensions::ExtensionSystemFactory::GetForProfile(profile_)->
+ extension_service();
if (!extension_service)
return; // During testing, there is no extension service.
const ExtensionSet* extensions = extension_service->extensions();
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_classifier_factory.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698