summaryrefslogtreecommitdiffstats
path: root/sync/engine/update_applicator.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sync/engine/update_applicator.cc')
-rw-r--r--sync/engine/update_applicator.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sync/engine/update_applicator.cc b/sync/engine/update_applicator.cc
index 72d2dec..03ae08d 100644
--- a/sync/engine/update_applicator.cc
+++ b/sync/engine/update_applicator.cc
@@ -101,7 +101,7 @@ void UpdateApplicator::Advance() {
}
bool UpdateApplicator::SkipUpdate(const syncable::Entry& entry) {
- syncable::ModelType type = entry.GetServerModelType();
+ syncer::ModelType type = entry.GetServerModelType();
ModelSafeGroup g = GetGroupForModelType(type, routing_info_);
// The set of updates passed to the UpdateApplicator should already
// be group-filtered.
@@ -111,8 +111,8 @@ bool UpdateApplicator::SkipUpdate(const syncable::Entry& entry) {
}
if (g == GROUP_PASSIVE &&
!routing_info_.count(type) &&
- type != syncable::UNSPECIFIED &&
- type != syncable::TOP_LEVEL_FOLDER) {
+ type != syncer::UNSPECIFIED &&
+ type != syncer::TOP_LEVEL_FOLDER) {
DVLOG(1) << "Skipping update application, type not permitted.";
return true;
}