| Index: sync/internal_api/attachments/on_disk_attachment_store_unittest.cc
|
| diff --git a/sync/internal_api/attachments/on_disk_attachment_store_unittest.cc b/sync/internal_api/attachments/on_disk_attachment_store_unittest.cc
|
| index e46f060216094041516edca0248e1a323c4f1dab..4dcc8f86c6ba02b0fba55dd340a6c09963fefe78 100644
|
| --- a/sync/internal_api/attachments/on_disk_attachment_store_unittest.cc
|
| +++ b/sync/internal_api/attachments/on_disk_attachment_store_unittest.cc
|
| @@ -37,9 +37,9 @@ class OnDiskAttachmentStoreFactory {
|
| OnDiskAttachmentStoreFactory() {}
|
| ~OnDiskAttachmentStoreFactory() {}
|
|
|
| - scoped_refptr<AttachmentStore> CreateAttachmentStore() {
|
| + scoped_ptr<AttachmentStore> CreateAttachmentStore() {
|
| EXPECT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| - scoped_refptr<AttachmentStore> store;
|
| + scoped_ptr<AttachmentStore> store;
|
| AttachmentStore::Result result = AttachmentStore::UNSPECIFIED_ERROR;
|
| store = AttachmentStore::CreateOnDiskStore(
|
| temp_dir_.path(), base::ThreadTaskRunnerHandle::Get(),
|
| @@ -64,7 +64,7 @@ class OnDiskAttachmentStoreSpecificTest : public testing::Test {
|
| base::ScopedTempDir temp_dir_;
|
| base::FilePath db_path_;
|
| base::MessageLoop message_loop_;
|
| - scoped_refptr<AttachmentStore> store_;
|
| + scoped_ptr<AttachmentStore> store_;
|
|
|
| OnDiskAttachmentStoreSpecificTest() {}
|
|
|
|
|