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

Unified Diff: chrome/browser/sync/sessions/session_state.h

Issue 8189003: Send important client side event information to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 9 years, 2 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/sessions/session_state.h
diff --git a/chrome/browser/sync/sessions/session_state.h b/chrome/browser/sync/sessions/session_state.h
index c6ee65ba598ec4838c4b0097189368e3613b079a..a399f94f66db84d8e9088321e520b353a92962d4 100644
--- a/chrome/browser/sync/sessions/session_state.h
+++ b/chrome/browser/sync/sessions/session_state.h
@@ -271,7 +271,8 @@ class UpdateProgress {
struct SyncCycleControlParameters {
SyncCycleControlParameters() : conflict_sets_built(false),
conflicts_resolved(false),
- items_committed(false) {}
+ items_committed(false),
+ debug_info_sent(false) {}
// Set to true by BuildAndProcessConflictSetsCommand if the RESOLVE_CONFLICTS
// step is needed.
bool conflict_sets_built;
@@ -281,6 +282,8 @@ struct SyncCycleControlParameters {
// Set to true by PostCommitMessageCommand if any commits were successful.
bool items_committed;
+
+ bool debug_info_sent;
};
// DirtyOnWrite wraps a value such that any write operation will update a

Powered by Google App Engine
This is Rietveld 408576698