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

Unified Diff: components/sync/engine_impl/syncer_unittest.cc

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « components/sync/engine_impl/syncer.cc ('k') | components/sync/engine_impl/worker_entity_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine_impl/syncer_unittest.cc
diff --git a/components/sync/engine_impl/syncer_unittest.cc b/components/sync/engine_impl/syncer_unittest.cc
index f44846fe8e018a09ea7ad9975d24eb881791cfd0..05638f5f72d84eeec120c392003a0c829308a8cc 100644
--- a/components/sync/engine_impl/syncer_unittest.cc
+++ b/components/sync/engine_impl/syncer_unittest.cc
@@ -109,11 +109,11 @@ class TypeDebugInfoCache : public TypeDebugInfoObserver {
StatusCounters GetLatestStatusCounters(ModelType type) const;
// TypeDebugInfoObserver implementation.
- void OnCommitCountersUpdated(ModelType type,
+ void OnCommitCountersUpdated(syncer::ModelType type,
const CommitCounters& counters) override;
- void OnUpdateCountersUpdated(ModelType type,
+ void OnUpdateCountersUpdated(syncer::ModelType type,
const UpdateCounters& counters) override;
- void OnStatusCountersUpdated(ModelType type,
+ void OnStatusCountersUpdated(syncer::ModelType type,
const StatusCounters& counters) override;
private:
@@ -160,19 +160,19 @@ StatusCounters TypeDebugInfoCache::GetLatestStatusCounters(
}
void TypeDebugInfoCache::OnCommitCountersUpdated(
- ModelType type,
+ syncer::ModelType type,
const CommitCounters& counters) {
commit_counters_map_[type] = counters;
}
void TypeDebugInfoCache::OnUpdateCountersUpdated(
- ModelType type,
+ syncer::ModelType type,
const UpdateCounters& counters) {
update_counters_map_[type] = counters;
}
void TypeDebugInfoCache::OnStatusCountersUpdated(
- ModelType type,
+ syncer::ModelType type,
const StatusCounters& counters) {
status_counters_map_[type] = counters;
}
« no previous file with comments | « components/sync/engine_impl/syncer.cc ('k') | components/sync/engine_impl/worker_entity_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698