Index: chrome/browser/sync/engine/update_applicator.h |
diff --git a/chrome/browser/sync/engine/update_applicator.h b/chrome/browser/sync/engine/update_applicator.h |
index 1196fccf29f5128678c2ecbd8415c46d630c1783..d658f0a4578a063ef4e4b7e89729cbb39420bb7e 100644 |
--- a/chrome/browser/sync/engine/update_applicator.h |
+++ b/chrome/browser/sync/engine/update_applicator.h |
@@ -65,6 +65,7 @@ class UpdateApplicator { |
virtual ~ResultTracker(); |
void AddConflict(syncable::Id); |
void AddEncryptionConflict(syncable::Id); |
+ void AddHierarchyConflict(syncable::Id); |
void AddSuccess(syncable::Id); |
void SaveProgress(sessions::ConflictProgress* conflict_progress, |
sessions::UpdateProgress* update_progress); |
@@ -77,6 +78,7 @@ class UpdateApplicator { |
std::vector<syncable::Id> conflicting_ids_; |
std::vector<syncable::Id> successful_ids_; |
std::vector<syncable::Id> encryption_conflict_ids_; |
+ std::vector<syncable::Id> hierarchy_conflict_ids_; |
}; |
// If true, AttemptOneApplication will skip over |entry| and return true. |