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/ui/webui/extensions/command_handler.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/ui/webui/extensions/command_handler.cc
diff --git a/chrome/browser/ui/webui/extensions/command_handler.cc b/chrome/browser/ui/webui/extensions/command_handler.cc
index 5ccb19fc936d1c9c3248d3fe7cddbb3f991a9c20..135caee745c2fd126959012e9b57170406c2c39a 100644
--- a/chrome/browser/ui/webui/extensions/command_handler.cc
+++ b/chrome/browser/ui/webui/extensions/command_handler.cc
@@ -99,8 +99,8 @@ void CommandHandler::GetAllCommands(base::DictionaryValue* commands) {
CommandService* command_service =
CommandServiceFactory::GetForProfile(profile);
- const ExtensionSet* extensions =
- ExtensionSystem::Get(profile)->extension_service()->extensions();
+ const ExtensionSet* extensions = extensions::ExtensionSystem::Get(profile)->
+ extension_service()->extensions();
for (ExtensionSet::const_iterator extension = extensions->begin();
extension != extensions->end(); ++extension) {
scoped_ptr<DictionaryValue> extension_dict(new DictionaryValue);
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | chrome/browser/ui/webui/extensions/extension_info_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698