| 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..c3c5ade69f670ab64d375c790382529d3fc0a71e 100644
|
| --- a/chrome/browser/sync/engine/update_applicator.h
|
| +++ b/chrome/browser/sync/engine/update_applicator.h
|
| @@ -63,8 +63,9 @@ class UpdateApplicator {
|
| public:
|
| explicit ResultTracker(size_t num_results);
|
| virtual ~ResultTracker();
|
| - void AddConflict(syncable::Id);
|
| + void AddSimpleConflict(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.
|
|
|