Index: content/browser/appcache/appcache_group.cc |
diff --git a/content/browser/appcache/appcache_group.cc b/content/browser/appcache/appcache_group.cc |
index 0e8f3c496da0bf3ca4c84817a234cb23ef34b2ec..573983eba6e803f29f8c7b168d605e8c03453bba 100644 |
--- a/content/browser/appcache/appcache_group.cc |
+++ b/content/browser/appcache/appcache_group.cc |
@@ -260,7 +260,8 @@ void AppCacheGroup::SetUpdateAppCacheStatus(UpdateAppCacheStatus status) { |
// deletion by adding an extra ref in this scope (but only if we're not |
// in our destructor). |
scoped_refptr<AppCacheGroup> protect(is_in_dtor_ ? NULL : this); |
- FOR_EACH_OBSERVER(UpdateObserver, observers_, OnUpdateComplete(this)); |
+ for (auto& observer : observers_) |
+ observer.OnUpdateComplete(this); |
if (!queued_updates_.empty()) |
ScheduleUpdateRestart(kUpdateRestartDelayMs); |
} |