| Index: sync/engine/process_commit_response_command.cc
|
| diff --git a/sync/engine/process_commit_response_command.cc b/sync/engine/process_commit_response_command.cc
|
| index 8a00608f925bd143a18a35006565e753447bc870..2f84619ec61ef418a9a9bf332ab88a757de9faea 100644
|
| --- a/sync/engine/process_commit_response_command.cc
|
| +++ b/sync/engine/process_commit_response_command.cc
|
| @@ -32,7 +32,6 @@ namespace syncer {
|
| using sessions::OrderedCommitSet;
|
| using sessions::StatusController;
|
| using sessions::SyncSession;
|
| -using sessions::ConflictProgress;
|
| using syncable::WriteTransaction;
|
| using syncable::MutableEntry;
|
| using syncable::Entry;
|
| @@ -110,7 +109,6 @@ SyncerError ProcessCommitResponseCommand::ProcessCommitResponse(
|
| int successes = 0;
|
|
|
| set<syncable::Id> deleted_folders;
|
| - ConflictProgress* conflict_progress = status->mutable_conflict_progress();
|
| OrderedCommitSet::Projection proj = status->commit_id_projection(
|
| commit_set_);
|
|
|
| @@ -129,8 +127,7 @@ SyncerError ProcessCommitResponseCommand::ProcessCommitResponse(
|
| break;
|
| case CommitResponse::CONFLICT:
|
| ++conflicting_commits;
|
| - conflict_progress->AddServerConflictingItemById(
|
| - commit_set_.GetCommitIdAt(proj[i]));
|
| + status->increment_num_server_conflicts();
|
| break;
|
| case CommitResponse::SUCCESS:
|
| // TODO(sync): worry about sync_rate_ rate calc?
|
|
|