| Index: sync/api/sync_data_unittest.cc
|
| diff --git a/sync/api/sync_data_unittest.cc b/sync/api/sync_data_unittest.cc
|
| index 020adec8f3399dbfae30d5411ee6575500ce1e21..651601894e0b9b57b84021a70f8a6154459a09bb 100644
|
| --- a/sync/api/sync_data_unittest.cc
|
| +++ b/sync/api/sync_data_unittest.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/memory/ref_counted_memory.h"
|
| @@ -41,7 +42,7 @@ class SyncDataTest : public testing::Test {
|
| attachment_service_weak_ptr_factory.GetWeakPtr()) {}
|
| base::MessageLoop loop;
|
| sync_pb::EntitySpecifics specifics;
|
| - scoped_ptr<AttachmentService> attachment_service;
|
| + std::unique_ptr<AttachmentService> attachment_service;
|
| base::WeakPtrFactory<AttachmentService> attachment_service_weak_ptr_factory;
|
| AttachmentServiceProxy attachment_service_proxy;
|
| };
|
|
|