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

Unified Diff: chrome/browser/sync/engine/syncapi.h

Issue 7013040: Add information about sync session and other useful data to about:sync. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing a bug. Created 9 years, 7 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/engine/syncapi.h
diff --git a/chrome/browser/sync/engine/syncapi.h b/chrome/browser/sync/engine/syncapi.h
index 7ccbe03eea445045ebcfce4a49c6d1336779b633..264e6618b4d7c9d5acb695cf70b3cad8df9b0df3 100644
--- a/chrome/browser/sync/engine/syncapi.h
+++ b/chrome/browser/sync/engine/syncapi.h
@@ -736,6 +736,10 @@ class SyncManager {
// Total number of overwrites due to conflict resolver since browser start.
int num_local_overwrites_total;
int num_server_overwrites_total;
+
+ // Count of empty and non empty getupdates;
+ int empty_getupdates;
akalin 2011/05/13 22:01:42 shouldn't you be initialize these somewhere?
lipalani1 2011/05/13 22:35:39 This structure does not have a constructor. Instea
akalin 2011/05/16 22:11:23 Hmm primitive types aren't zero-initialized in C++
+ int nonempty_getupdates;
};
// An interface the embedding application implements to receive notifications

Powered by Google App Engine
This is Rietveld 408576698