Index: components/sync/core/processor_entity_tracker.cc |
diff --git a/sync/internal_api/processor_entity_tracker.cc b/components/sync/core/processor_entity_tracker.cc |
similarity index 96% |
rename from sync/internal_api/processor_entity_tracker.cc |
rename to components/sync/core/processor_entity_tracker.cc |
index 8c37c02d550ed05bd186b3a103c8d7fb8563d941..41d3456b2d9c9a03f76a0b77a9c12a454f87ddce 100644 |
--- a/sync/internal_api/processor_entity_tracker.cc |
+++ b/components/sync/core/processor_entity_tracker.cc |
@@ -2,16 +2,16 @@ |
// 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/processor_entity_tracker.h" |
+#include "components/sync/core/processor_entity_tracker.h" |
#include <stdint.h> |
#include "base/base64.h" |
#include "base/sha1.h" |
#include "base/time/time.h" |
-#include "sync/internal_api/public/non_blocking_sync_common.h" |
-#include "sync/syncable/syncable_util.h" |
-#include "sync/util/time.h" |
+#include "components/sync/base/time.h" |
+#include "components/sync/core/non_blocking_sync_common.h" |
+#include "components/sync/syncable/syncable_util.h" |
namespace syncer_v2 { |
@@ -82,8 +82,8 @@ bool ProcessorEntityTracker::HasCommitData() const { |
} |
bool ProcessorEntityTracker::MatchesData(const EntityData& data) const { |
- return metadata_.is_deleted() ? data.is_deleted() : |
- MatchesSpecificsHash(data.specifics); |
+ return metadata_.is_deleted() ? data.is_deleted() |
+ : MatchesSpecificsHash(data.specifics); |
} |
bool ProcessorEntityTracker::MatchesBaseData(const EntityData& data) const { |