Index: chrome/browser/sync/profile_sync_service_harness.cc |
diff --git a/chrome/browser/sync/profile_sync_service_harness.cc b/chrome/browser/sync/profile_sync_service_harness.cc |
index 34b6124c510140ac1f4de1c4be07818fbdd28bad..37283678d8fabbd5e3ca53dbccb6f90c24d733e4 100644 |
--- a/chrome/browser/sync/profile_sync_service_harness.cc |
+++ b/chrome/browser/sync/profile_sync_service_harness.cc |
@@ -775,7 +775,7 @@ ProfileSyncService::Status ProfileSyncServiceHarness::GetStatus() { |
bool ProfileSyncServiceHarness::IsDataSyncedImpl( |
const browser_sync::sessions::SyncSessionSnapshot *snap) { |
return snap && |
- snap->num_blocking_conflicting_updates == 0 && |
+ snap->num_simple_conflicting_updates == 0 && |
ServiceIsPushingChanges() && |
GetStatus().notifications_enabled && |
!service()->HasUnsyncedItems() && |
@@ -1016,8 +1016,8 @@ std::string ProfileSyncServiceHarness::GetClientInfoString( |
<< snap->unsynced_count |
<< ", num_conflicting_updates: " |
<< snap->num_conflicting_updates |
- << ", num_blocking_conflicting_updates: " |
- << snap->num_blocking_conflicting_updates |
+ << ", num_simple_conflicting_updates: " |
+ << snap->num_simple_conflicting_updates |
<< ", num_updates_downloaded : " |
<< snap->syncer_status.num_updates_downloaded_total |
<< ", passphrase_required_reason: " |