Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: components/sync/driver/shared_change_processor_unittest.cc

Issue 2399953002: [Sync] Move attachments code out of core/. (Closed)
Patch Set: Fix some things. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/sync/driver/shared_change_processor_unittest.cc
diff --git a/components/sync/driver/shared_change_processor_unittest.cc b/components/sync/driver/shared_change_processor_unittest.cc
index 829310ef78ead53e8d87955f75f3add500cc9399..57fd096d5b4e7676930aa7321b9e61e9f88b0347 100644
--- a/components/sync/driver/shared_change_processor_unittest.cc
+++ b/components/sync/driver/shared_change_processor_unittest.cc
@@ -12,11 +12,11 @@
#include "base/synchronization/waitable_event.h"
#include "base/threading/thread.h"
#include "components/sync/api/attachments/attachment_id.h"
+#include "components/sync/api/attachments/attachment_service.h"
#include "components/sync/api/attachments/attachment_store.h"
#include "components/sync/api/data_type_error_handler_mock.h"
#include "components/sync/api/fake_syncable_service.h"
#include "components/sync/base/model_type.h"
-#include "components/sync/core/attachments/attachment_service_impl.h"
#include "components/sync/core/test/test_user_share.h"
#include "components/sync/device_info/local_device_info_provider.h"
#include "components/sync/driver/fake_sync_client.h"
@@ -72,7 +72,7 @@ class TestSyncApiComponentFactory : public SyncApiComponentFactory {
const std::string& store_birthday,
ModelType model_type,
AttachmentService::Delegate* delegate) override {
- return AttachmentServiceImpl::CreateForTest();
+ return AttachmentService::CreateForTest();
}
};

Powered by Google App Engine
This is Rietveld 408576698