| Index: components/sync_driver/fake_sync_client.h
|
| diff --git a/components/sync_driver/fake_sync_client.h b/components/sync_driver/fake_sync_client.h
|
| index 69e71664ab38d5e526ca5436caeb435fd279a8bd..d9b236fae8ceab68fa824b2a5fe4460e08929389 100644
|
| --- a/components/sync_driver/fake_sync_client.h
|
| +++ b/components/sync_driver/fake_sync_client.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_SYNC_DRIVER_FAKE_SYNC_CLIENT_H_
|
| #define COMPONENTS_SYNC_DRIVER_FAKE_SYNC_CLIENT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| #include "components/sync_driver/sync_client.h"
|
|
|
| @@ -44,7 +46,7 @@ class FakeSyncClient : public SyncClient {
|
|
|
| private:
|
| SyncApiComponentFactory* factory_;
|
| - scoped_ptr<FakeSyncService> sync_service_;
|
| + std::unique_ptr<FakeSyncService> sync_service_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(FakeSyncClient);
|
| };
|
|
|