| Index: components/sync/device_info/device_info_sync_service.h | 
| diff --git a/components/sync/device_info/device_info_sync_service.h b/components/sync/device_info/device_info_sync_service.h | 
| index 29da4404ae040787567912eed7e9a16e21f63592..72aebb2654547e35b00fd4d0347884893e0c2041 100644 | 
| --- a/components/sync/device_info/device_info_sync_service.h | 
| +++ b/components/sync/device_info/device_info_sync_service.h | 
| @@ -12,7 +12,6 @@ | 
| #include <string> | 
|  | 
| #include "base/macros.h" | 
| -#include "base/memory/scoped_vector.h" | 
| #include "base/observer_list.h" | 
| #include "base/time/time.h" | 
| #include "base/timer/timer.h" | 
| @@ -51,7 +50,7 @@ class DeviceInfoSyncService : public syncer::SyncableService, | 
| bool IsSyncing() const override; | 
| std::unique_ptr<DeviceInfo> GetDeviceInfo( | 
| const std::string& client_id) const override; | 
| -  ScopedVector<DeviceInfo> GetAllDeviceInfo() const override; | 
| +  std::vector<std::unique_ptr<DeviceInfo>> GetAllDeviceInfo() const override; | 
| void AddObserver(Observer* observer) override; | 
| void RemoveObserver(Observer* observer) override; | 
| int CountActiveDevices() const override; | 
|  |