| Index: chrome/browser/background/background_application_list_model.cc
|
| ===================================================================
|
| --- chrome/browser/background/background_application_list_model.cc (revision 113231)
|
| +++ chrome/browser/background/background_application_list_model.cc (working copy)
|
| @@ -71,9 +71,9 @@
|
| namespace {
|
| void GetServiceApplications(ExtensionService* service,
|
| ExtensionList* applications_result) {
|
| - const ExtensionList* extensions = service->extensions();
|
| + const ExtensionSet* extensions = service->extensions();
|
|
|
| - for (ExtensionList::const_iterator cursor = extensions->begin();
|
| + for (ExtensionSet::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 (ExtensionList::const_iterator cursor = extensions->begin();
|
| + for (ExtensionSet::const_iterator cursor = extensions->begin();
|
| cursor != extensions->end();
|
| ++cursor) {
|
| const Extension* extension = *cursor;
|
|
|