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

Unified Diff: components/sync/test/engine/test_directory_setter_upper.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/test/engine/test_directory_setter_upper.cc
diff --git a/sync/test/engine/test_directory_setter_upper.cc b/components/sync/test/engine/test_directory_setter_upper.cc
similarity index 76%
rename from sync/test/engine/test_directory_setter_upper.cc
rename to components/sync/test/engine/test_directory_setter_upper.cc
index e71964e37f4726564244e5ee5470c49fefce263c..f7499c16048d1ede5d4bb8b832de85bb8302a012 100644
--- a/sync/test/engine/test_directory_setter_upper.cc
+++ b/components/sync/test/engine/test_directory_setter_upper.cc
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sync/test/engine/test_directory_setter_upper.h"
+#include "components/sync/test/engine/test_directory_setter_upper.h"
#include "base/compiler_specific.h"
#include "base/files/file_util.h"
#include "base/location.h"
#include "base/strings/string_util.h"
-#include "sync/syncable/directory.h"
-#include "sync/syncable/in_memory_directory_backing_store.h"
-#include "sync/syncable/mutable_entry.h"
-#include "sync/syncable/syncable_read_transaction.h"
-#include "sync/syncable/syncable_write_transaction.h"
-#include "sync/test/test_transaction_observer.h"
+#include "components/sync/syncable/directory.h"
+#include "components/sync/syncable/in_memory_directory_backing_store.h"
+#include "components/sync/syncable/mutable_entry.h"
+#include "components/sync/syncable/syncable_read_transaction.h"
+#include "components/sync/syncable/syncable_write_transaction.h"
+#include "components/sync/test/test_transaction_observer.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace syncer {
@@ -31,8 +31,8 @@ void TestDirectorySetterUpper::SetUp() {
new syncable::InMemoryDirectoryBackingStore(name_),
MakeWeakHandle(handler_.GetWeakPtr()), base::Closure(),
&encryption_handler_, encryption_handler_.cryptographer()));
- ASSERT_EQ(syncable::OPENED, directory_->Open(
- name_, &delegate_, transaction_observer));
+ ASSERT_EQ(syncable::OPENED,
+ directory_->Open(name_, &delegate_, transaction_observer));
}
void TestDirectorySetterUpper::SetUpWith(
@@ -45,8 +45,8 @@ void TestDirectorySetterUpper::SetUpWith(
directory_.reset(new syncable::Directory(
directory_store, MakeWeakHandle(handler_.GetWeakPtr()), base::Closure(),
&encryption_handler_, encryption_handler_.cryptographer()));
- ASSERT_EQ(syncable::OPENED, directory_->Open(
- name_, &delegate_, transaction_observer));
+ ASSERT_EQ(syncable::OPENED,
+ directory_->Open(name_, &delegate_, transaction_observer));
}
void TestDirectorySetterUpper::TearDown() {
« no previous file with comments | « components/sync/test/engine/test_directory_setter_upper.h ('k') | components/sync/test/engine/test_id_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698