| Index: components/sync/device_info/device_info_sync_service.cc
|
| diff --git a/components/sync/device_info/device_info_sync_service.cc b/components/sync/device_info/device_info_sync_service.cc
|
| index c9fe8c4c847843d5ef6e5d014324e70b4df0e2bd..4797e49273f00a6c868149a7d0c1680ef1676b26 100644
|
| --- a/components/sync/device_info/device_info_sync_service.cc
|
| +++ b/components/sync/device_info/device_info_sync_service.cc
|
| @@ -224,7 +224,8 @@ int DeviceInfoSyncService::CountActiveDevices() const {
|
| }
|
|
|
| void DeviceInfoSyncService::NotifyObservers() {
|
| - FOR_EACH_OBSERVER(Observer, observers_, OnDeviceInfoChange());
|
| + for (auto& observer : observers_)
|
| + observer.OnDeviceInfoChange();
|
| }
|
|
|
| SyncData DeviceInfoSyncService::CreateLocalData(const DeviceInfo* info) {
|
|
|