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

Unified Diff: components/sync/api/sync_data_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/api/sync_data_unittest.cc
diff --git a/components/sync/api/sync_data_unittest.cc b/components/sync/api/sync_data_unittest.cc
index c892d15af5be8f923efc23db9338148bf26fcddf..0b20589c1b5f1a7b037461979c4021f78cb7d0ca 100644
--- a/components/sync/api/sync_data_unittest.cc
+++ b/components/sync/api/sync_data_unittest.cc
@@ -9,8 +9,7 @@
#include "base/memory/ref_counted_memory.h"
#include "base/message_loop/message_loop.h"
#include "base/threading/thread_task_runner_handle.h"
-#include "components/sync/core/attachments/attachment_service.h"
-#include "components/sync/core/attachments/attachment_service_impl.h"
+#include "components/sync/api/attachments/attachment_service.h"
#include "components/sync/protocol/sync.pb.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -29,7 +28,7 @@ const base::Time kLastModifiedTime = base::Time();
class SyncDataTest : public testing::Test {
protected:
SyncDataTest()
- : attachment_service(AttachmentServiceImpl::CreateForTest()),
+ : attachment_service(AttachmentService::CreateForTest()),
attachment_service_weak_ptr_factory(attachment_service.get()),
attachment_service_proxy(
base::ThreadTaskRunnerHandle::Get(),

Powered by Google App Engine
This is Rietveld 408576698