Index: components/favicon/core/favicon_driver.cc |
diff --git a/components/favicon/core/favicon_driver.cc b/components/favicon/core/favicon_driver.cc |
index e94034e3e78de657713851b770c654fc021e0529..bd0f278a284193631b9e976a6dcf342bba21797c 100644 |
--- a/components/favicon/core/favicon_driver.cc |
+++ b/components/favicon/core/favicon_driver.cc |
@@ -25,9 +25,10 @@ void FaviconDriver::NotifyFaviconUpdatedObservers( |
const GURL& icon_url, |
bool icon_url_changed, |
const gfx::Image& image) { |
- FOR_EACH_OBSERVER(FaviconDriverObserver, observer_list_, |
- OnFaviconUpdated(this, notification_icon_type, icon_url, |
- icon_url_changed, image)); |
+ for (FaviconDriverObserver& observer : observer_list_) { |
+ observer.OnFaviconUpdated(this, notification_icon_type, icon_url, |
+ icon_url_changed, image); |
+ } |
} |
} // namespace favicon |