| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc
|
| index 28e9cdb558088d38722f4d30f87812e87c809359..86374060dd21a9c9eed9ec5cc3643d5a93d02ede 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_service.cc
|
| @@ -68,8 +68,8 @@ void DataReductionProxyService::SetIOData(
|
| DCHECK(CalledOnValidThread());
|
| io_data_ = io_data;
|
| initialized_ = true;
|
| - FOR_EACH_OBSERVER(DataReductionProxyServiceObserver,
|
| - observer_list_, OnServiceInitialized());
|
| + for (DataReductionProxyServiceObserver& observer : observer_list_)
|
| + observer.OnServiceInitialized();
|
|
|
| // Load the Data Reduction Proxy configuration from |prefs_| and apply it.
|
| if (prefs_) {
|
|
|