| Index: components/sync/device_info/device_info_service.cc
|
| diff --git a/components/sync/device_info/device_info_service.cc b/components/sync/device_info/device_info_service.cc
|
| index 7f0853ee35b69e74734320b42e2ddcaf06f263d1..b13f1d4e5d4db5d372cac9ead0d2e6eff0882c77 100644
|
| --- a/components/sync/device_info/device_info_service.cc
|
| +++ b/components/sync/device_info/device_info_service.cc
|
| @@ -216,7 +216,8 @@ int DeviceInfoService::CountActiveDevices() const {
|
| }
|
|
|
| void DeviceInfoService::NotifyObservers() {
|
| - FOR_EACH_OBSERVER(Observer, observers_, OnDeviceInfoChange());
|
| + for (auto& observer : observers_)
|
| + observer.OnDeviceInfoChange();
|
| }
|
|
|
| // Static.
|
|
|