| Index: components/sync_driver/local_device_info_provider_unittest.cc
|
| diff --git a/components/sync_driver/local_device_info_provider_unittest.cc b/components/sync_driver/local_device_info_provider_unittest.cc
|
| index 21b7cedd903c774bac21babe2f9552d0d877d808..ba8a6c46e500c6d01985170cfd8b4fbd52b504da 100644
|
| --- a/components/sync_driver/local_device_info_provider_unittest.cc
|
| +++ b/components/sync_driver/local_device_info_provider_unittest.cc
|
| @@ -44,7 +44,7 @@ class SyncLocalDeviceInfoProviderTest : public testing::Test {
|
| // Subscribe to the notification and wait until the callback
|
| // is called. The callback will quit the loop.
|
| base::RunLoop run_loop;
|
| - scoped_ptr<LocalDeviceInfoProvider::Subscription> subscription(
|
| + std::unique_ptr<LocalDeviceInfoProvider::Subscription> subscription(
|
| provider_->RegisterOnInitializedCallback(
|
| base::Bind(&SyncLocalDeviceInfoProviderTest::QuitLoopOnInitialized,
|
| base::Unretained(this), &run_loop)));
|
| @@ -56,7 +56,7 @@ class SyncLocalDeviceInfoProviderTest : public testing::Test {
|
| loop->Quit();
|
| }
|
|
|
| - scoped_ptr<LocalDeviceInfoProviderImpl> provider_;
|
| + std::unique_ptr<LocalDeviceInfoProviderImpl> provider_;
|
|
|
| bool called_back_;
|
|
|
|
|