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

Unified Diff: chrome/browser/background/background_application_list_model.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/background/background_application_list_model.cc
===================================================================
--- chrome/browser/background/background_application_list_model.cc (revision 113069)
+++ chrome/browser/background/background_application_list_model.cc (working copy)
@@ -71,9 +71,9 @@
namespace {
void GetServiceApplications(ExtensionService* service,
ExtensionList* applications_result) {
- const ExtensionSet* extensions = service->extensions();
+ const ExtensionList* extensions = service->extensions();
- for (ExtensionSet::const_iterator cursor = extensions->begin();
+ for (ExtensionList::const_iterator cursor = extensions->begin();
cursor != extensions->end();
++cursor) {
const Extension* extension = *cursor;
@@ -84,7 +84,7 @@
// Walk the list of terminated extensions also (just because an extension
// crashed doesn't mean we should ignore it).
extensions = service->terminated_extensions();
- for (ExtensionSet::const_iterator cursor = extensions->begin();
+ for (ExtensionList::const_iterator cursor = extensions->begin();
cursor != extensions->end();
++cursor) {
const Extension* extension = *cursor;
Property changes on: chrome/browser/background/background_application_list_model.cc
___________________________________________________________________
Added: svn:mergeinfo

Powered by Google App Engine
This is Rietveld 408576698