| Index: sync/internal_api/test/fake_sync_manager.cc
|
| diff --git a/sync/internal_api/test/fake_sync_manager.cc b/sync/internal_api/test/fake_sync_manager.cc
|
| index 90ffa1b86d5ad5167ee21fc9ede99843f2a7767e..e2dd498eb9ca9916a0397808c35e97554cbad3c9 100644
|
| --- a/sync/internal_api/test/fake_sync_manager.cc
|
| +++ b/sync/internal_api/test/fake_sync_manager.cc
|
| @@ -227,9 +227,9 @@ FakeSyncManager::GetBufferedProtocolEvents() {
|
| return ScopedVector<syncer::ProtocolEvent>();
|
| }
|
|
|
| -scoped_ptr<base::ListValue> FakeSyncManager::GetAllNodesForType(
|
| +std::unique_ptr<base::ListValue> FakeSyncManager::GetAllNodesForType(
|
| syncer::ModelType type) {
|
| - return scoped_ptr<base::ListValue>(new base::ListValue());
|
| + return std::unique_ptr<base::ListValue>(new base::ListValue());
|
| }
|
|
|
| void FakeSyncManager::RefreshTypes(ModelTypeSet types) {
|
| @@ -251,7 +251,7 @@ void FakeSyncManager::RequestEmitDebugInfo() {}
|
|
|
| void FakeSyncManager::OnIncomingInvalidation(
|
| syncer::ModelType type,
|
| - scoped_ptr<InvalidationInterface> invalidation) {
|
| + std::unique_ptr<InvalidationInterface> invalidation) {
|
| num_invalidations_received_++;
|
| }
|
|
|
|
|