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

Unified Diff: chrome/browser/ui/webui/options/search_engine_manager_handler.cc

Issue 8789018: Revert 113047 - Make ExtensionService use ExtensionSet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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/options/search_engine_manager_handler.cc
===================================================================
--- chrome/browser/ui/webui/options/search_engine_manager_handler.cc (revision 113069)
+++ chrome/browser/ui/webui/options/search_engine_manager_handler.cc (working copy)
@@ -143,8 +143,8 @@
ExtensionService* extension_service =
Profile::FromWebUI(web_ui_)->GetExtensionService();
if (extension_service) {
- const ExtensionSet* extensions = extension_service->extensions();
- for (ExtensionSet::const_iterator it = extensions->begin();
+ const ExtensionList* extensions = extension_service->extensions();
+ for (ExtensionList::const_iterator it = extensions->begin();
it != extensions->end(); ++it) {
if ((*it)->omnibox_keyword().size() > 0)
keyword_list.Append(CreateDictionaryForExtension(*(*it)));
Property changes on: chrome/browser/ui/webui/options/search_engine_manager_handler.cc
___________________________________________________________________
Added: svn:mergeinfo
« no previous file with comments | « chrome/browser/ui/webui/options/extension_settings_handler.cc ('k') | chrome/common/extensions/extension_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698