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

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

Issue 10523003: Refactor following sync commit loop change (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor fixes Created 8 years, 6 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/sync_ui_util.cc
diff --git a/chrome/browser/sync/sync_ui_util.cc b/chrome/browser/sync/sync_ui_util.cc
index 3b2d373e65d1759b688d8d933904b4f9908d4671..453ee000107bf0c12d6c3519cb1e6381deebc04f 100644
--- a/chrome/browser/sync/sync_ui_util.cc
+++ b/chrome/browser/sync/sync_ui_util.cc
@@ -615,15 +615,11 @@ void ConstructAboutInformation(ProfileSyncService* service,
browser_sync::GetUpdatesSourceString(
snapshot.source().updates_source));
sync_ui_util::AddStringSyncDetails(
- cycles, "Download Updates",
+ cycles, "Download Step Result",
GetSyncerErrorString(snapshot.errors().last_download_updates_result));
sync_ui_util::AddStringSyncDetails(
- cycles, "Post Commit",
- GetSyncerErrorString(snapshot.errors().last_post_commit_result));
- sync_ui_util::AddStringSyncDetails(
- cycles, "Process Commit Response",
- GetSyncerErrorString(
- snapshot.errors().last_process_commit_response_result));
+ cycles, "Commit Step Result",
+ GetSyncerErrorString(snapshot.errors().commit_result));
// Strictly increasing counters.
ListValue* counters = AddSyncDetailsSection(details, "Running Totals");

Powered by Google App Engine
This is Rietveld 408576698