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

Unified Diff: components/sync/core_impl/attachments/attachment_service_proxy_for_test.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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/core_impl/attachments/attachment_service_proxy_for_test.cc
diff --git a/sync/internal_api/attachments/attachment_service_proxy_for_test.cc b/components/sync/core_impl/attachments/attachment_service_proxy_for_test.cc
similarity index 88%
rename from sync/internal_api/attachments/attachment_service_proxy_for_test.cc
rename to components/sync/core_impl/attachments/attachment_service_proxy_for_test.cc
index af5f492d8473bb96fb5bd6e01780be078f2aa569..c305282278741cf6b85456a19fe7e2195c976bdc 100644
--- a/sync/internal_api/attachments/attachment_service_proxy_for_test.cc
+++ b/components/sync/core_impl/attachments/attachment_service_proxy_for_test.cc
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sync/internal_api/public/attachments/attachment_service_proxy_for_test.h"
+#include "components/sync/core/attachments/attachment_service_proxy_for_test.h"
#include <utility>
#include "base/message_loop/message_loop.h"
#include "base/threading/thread_task_runner_handle.h"
-#include "sync/internal_api/public/attachments/attachment_service_impl.h"
+#include "components/sync/core/attachments/attachment_service_impl.h"
namespace syncer {
@@ -21,8 +21,7 @@ AttachmentServiceProxyForTest::OwningCore::OwningCore(
DCHECK(wrapped_);
}
-AttachmentServiceProxyForTest::OwningCore::~OwningCore() {
-}
+AttachmentServiceProxyForTest::OwningCore::~OwningCore() {}
// Static.
AttachmentServiceProxy AttachmentServiceProxyForTest::Create() {
@@ -54,13 +53,11 @@ AttachmentServiceProxy AttachmentServiceProxyForTest::Create() {
return AttachmentServiceProxyForTest(runner, core_for_test);
}
-AttachmentServiceProxyForTest::~AttachmentServiceProxyForTest() {
-}
+AttachmentServiceProxyForTest::~AttachmentServiceProxyForTest() {}
AttachmentServiceProxyForTest::AttachmentServiceProxyForTest(
const scoped_refptr<base::SequencedTaskRunner>& wrapped_task_runner,
const scoped_refptr<Core>& core)
- : AttachmentServiceProxy(wrapped_task_runner, core) {
-}
+ : AttachmentServiceProxy(wrapped_task_runner, core) {}
} // namespace syncer

Powered by Google App Engine
This is Rietveld 408576698