| Index: components/sync_driver/local_device_info_provider.h
|
| diff --git a/components/sync_driver/local_device_info_provider.h b/components/sync_driver/local_device_info_provider.h
|
| index d61041e9e76ac4a7b000e0760023707386afd947..464146f17fd6405abcfa1c017b379ec87872cf8e 100644
|
| --- a/components/sync_driver/local_device_info_provider.h
|
| +++ b/components/sync_driver/local_device_info_provider.h
|
| @@ -8,11 +8,15 @@
|
| #include <string>
|
| #include "base/callback_list.h"
|
|
|
| +namespace base {
|
| +class TaskRunner;
|
| +}
|
| +
|
| namespace sync_driver {
|
|
|
| class DeviceInfo;
|
|
|
| -// Interface for providing sync specific informaiton about the
|
| +// Interface for providing sync specific information about the
|
| // local device.
|
| class LocalDeviceInfoProvider {
|
| public:
|
| @@ -40,7 +44,8 @@ class LocalDeviceInfoProvider {
|
| // Starts initializing local device info.
|
| virtual void Initialize(
|
| const std::string& cache_guid,
|
| - const std::string& signin_scoped_device_id) = 0;
|
| + const std::string& signin_scoped_device_id,
|
| + const scoped_refptr<base::TaskRunner>& blocking_task_runner) = 0;
|
|
|
| // Registers a callback to be called when local device info becomes available.
|
| // The callback will remain registered until the
|
|
|