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 |