Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(805)

Unified Diff: chrome/browser/sync/profile_sync_service_harness.cc

Issue 9305001: sync: Remove the remaining conflict sets code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More renames, refactors and fixes Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 5cf6e416d70433022c3b295f67d8d272f8cf533e..973d4eb1c35d8850151edd127936287e05bc59ae 100644
--- a/chrome/browser/sync/profile_sync_service_harness.cc
+++ b/chrome/browser/sync/profile_sync_service_harness.cc
@@ -770,7 +770,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() &&
@@ -1007,8 +1007,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: "

Powered by Google App Engine
This is Rietveld 408576698