Index: components/sync/syncable/parent_child_index_unittest.cc |
diff --git a/sync/syncable/parent_child_index_unittest.cc b/components/sync/syncable/parent_child_index_unittest.cc |
similarity index 98% |
rename from sync/syncable/parent_child_index_unittest.cc |
rename to components/sync/syncable/parent_child_index_unittest.cc |
index 1ef983255c6aebb96ed7196cfb7f76bacf33edfc..dc2cdcd33431436d7223cf605caf5bd66549ec46 100644 |
--- a/sync/syncable/parent_child_index_unittest.cc |
+++ b/components/sync/syncable/parent_child_index_unittest.cc |
@@ -2,15 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "sync/syncable/parent_child_index.h" |
+#include "components/sync/syncable/parent_child_index.h" |
#include <list> |
#include <string> |
#include "base/stl_util.h" |
#include "base/strings/string_number_conversions.h" |
-#include "sync/syncable/entry_kernel.h" |
-#include "sync/syncable/syncable_util.h" |
+#include "components/sync/syncable/entry_kernel.h" |
+#include "components/sync/syncable/syncable_util.h" |
#include "testing/gtest/include/gtest/gtest.h" |
namespace syncer { |
@@ -93,9 +93,8 @@ class ParentChildIndexTest : public testing::Test { |
bm->put(ID, GetBookmarkId(n)); |
bm->put(PARENT_ID, GetBookmarkRootId()); |
- bm->put(UNIQUE_BOOKMARK_TAG, |
- syncable::GenerateSyncableBookmarkHash(kCacheGuid, |
- bm->ref(ID).GetServerId())); |
+ bm->put(UNIQUE_BOOKMARK_TAG, syncable::GenerateSyncableBookmarkHash( |
+ kCacheGuid, bm->ref(ID).GetServerId())); |
UniquePosition unique_pos = |
UniquePosition::FromInt64(pos, bm->ref(UNIQUE_BOOKMARK_TAG)); |
@@ -523,4 +522,3 @@ TEST_F(ParentChildIndexTest, MultipleTypeRootsInverse) { |
} // namespace syncable |
} // namespace syncer |
- |