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

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

Issue 10253020: Fix labels in chrome://sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9a8307a88c3e55b2f8b3d18c1acdbadcefc8168f..902e495bcac4cfbe19605b37a9af809d00d4042e 100644
--- a/chrome/browser/sync/sync_ui_util.cc
+++ b/chrome/browser/sync/sync_ui_util.cc
@@ -636,16 +636,16 @@ void ConstructAboutInformation(ProfileSyncService* service,
full_status.nonempty_get_updates);
sync_ui_util::AddIntSyncDetail(counters,
"Cycles Without Commits",
- full_status.sync_cycles_with_commits);
+ full_status.sync_cycles_without_commits);
sync_ui_util::AddIntSyncDetail(counters,
"Cycles With Commits",
- full_status.sync_cycles_without_commits);
+ full_status.sync_cycles_with_commits);
sync_ui_util::AddIntSyncDetail(counters,
"Cycles Without Commits or Updates",
- full_status.useful_sync_cycles);
+ full_status.useless_sync_cycles);
sync_ui_util::AddIntSyncDetail(counters,
"Cycles With Commit or Update",
- full_status.useless_sync_cycles);
+ full_status.useful_sync_cycles);
sync_ui_util::AddIntSyncDetail(counters,
"Updates Downloaded",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698