| Index: components/sync_driver/generic_change_processor_unittest.cc
|
| diff --git a/components/sync_driver/generic_change_processor_unittest.cc b/components/sync_driver/generic_change_processor_unittest.cc
|
| index 0875908a4e3fcc56b9d026326058bc3b93221a76..2434e89626f53c008a1129154305b81626127b17 100644
|
| --- a/components/sync_driver/generic_change_processor_unittest.cc
|
| +++ b/components/sync_driver/generic_change_processor_unittest.cc
|
| @@ -11,6 +11,7 @@
|
| #include "components/sync_driver/data_type_error_handler_mock.h"
|
| #include "sync/api/attachments/fake_attachment_service.h"
|
| #include "sync/api/attachments/fake_attachment_store.h"
|
| +#include "sync/api/attachments/fake_attachment_uploader.h"
|
| #include "sync/api/fake_syncable_service.h"
|
| #include "sync/api/sync_change.h"
|
| #include "sync/api/sync_merge_result.h"
|
| @@ -44,8 +45,11 @@ class MockAttachmentService : public syncer::FakeAttachmentService {
|
| };
|
|
|
| MockAttachmentService::MockAttachmentService()
|
| - : FakeAttachmentService(scoped_ptr<syncer::AttachmentStore>(
|
| - new syncer::FakeAttachmentStore(base::MessageLoopProxy::current()))) {
|
| + : FakeAttachmentService(
|
| + scoped_ptr<syncer::AttachmentStore>(new syncer::FakeAttachmentStore(
|
| + base::MessageLoopProxy::current())),
|
| + scoped_ptr<syncer::AttachmentUploader>(
|
| + new syncer::FakeAttachmentUploader)) {
|
| }
|
|
|
| MockAttachmentService::~MockAttachmentService() {
|
|
|