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

Unified Diff: components/sync/core_impl/attachments/fake_attachment_downloader_unittest.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/fake_attachment_downloader_unittest.cc
diff --git a/sync/internal_api/attachments/fake_attachment_downloader_unittest.cc b/components/sync/core_impl/attachments/fake_attachment_downloader_unittest.cc
similarity index 88%
rename from sync/internal_api/attachments/fake_attachment_downloader_unittest.cc
rename to components/sync/core_impl/attachments/fake_attachment_downloader_unittest.cc
index 1e08e4fb97a0e4807c89fc28de62bd40e1137d83..7d2c0f3252078a244975e89b8d2cbcdacff151c6 100644
--- a/sync/internal_api/attachments/fake_attachment_downloader_unittest.cc
+++ b/components/sync/core_impl/attachments/fake_attachment_downloader_unittest.cc
@@ -2,14 +2,14 @@
// 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/fake_attachment_downloader.h"
+#include "components/sync/core/attachments/fake_attachment_downloader.h"
#include <vector>
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
-#include "sync/api/attachments/attachment.h"
+#include "components/sync/api/attachments/attachment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
@@ -22,9 +22,7 @@ class FakeAttachmentDownloaderTest : public testing::Test {
void TearDown() override {}
- AttachmentDownloader* downloader() {
- return &attachment_downloader_;
- }
+ AttachmentDownloader* downloader() { return &attachment_downloader_; }
AttachmentDownloader::DownloadCallback download_callback() {
return base::Bind(&FakeAttachmentDownloaderTest::DownloadDone,

Powered by Google App Engine
This is Rietveld 408576698