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

Unified Diff: components/sync/core/processor_entity_tracker.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/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 {
« no previous file with comments | « components/sync/core/processor_entity_tracker.h ('k') | components/sync/core/processor_entity_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698