diff options
author | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 00:51:18 +0000 |
---|---|---|
committer | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 00:51:18 +0000 |
commit | 24e5d7875edfd68c819e2f4985ad78f6b6b63272 (patch) | |
tree | 549eaecce0debe4198dfff042f0c259474680d4a /sync | |
parent | 5e43d34de9aac4f71e8dd76fda86a5c2d3476bae (diff) | |
download | chromium_src-24e5d7875edfd68c819e2f4985ad78f6b6b63272.zip chromium_src-24e5d7875edfd68c819e2f4985ad78f6b6b63272.tar.gz chromium_src-24e5d7875edfd68c819e2f4985ad78f6b6b63272.tar.bz2 |
Augment the client debug info with the cause for nudges.
BUG=
TEST=
Review URL: http://codereview.chromium.org/9956038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132713 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-rw-r--r-- | sync/protocol/client_debug_info.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sync/protocol/client_debug_info.proto b/sync/protocol/client_debug_info.proto index 6a0fa54..8b23321 100644 --- a/sync/protocol/client_debug_info.proto +++ b/sync/protocol/client_debug_info.proto @@ -63,8 +63,16 @@ message DebugEventInfo { BOOTSTRAP_TOKEN_UPDATED = 9; // A new cryptographer bootstrap token was // generated. } + // In a given |DebugEventInfo| only one of the following would be set. optional EventType type = 1; + optional SyncCycleCompletedEventInfo sync_cycle_completed_event_info = 2; + + // Datatype that caused the nudge. + optional int32 nudging_datatype = 3; + + // Datatypes that were notified from server. + repeated int32 datatypes_notified_from_server = 4; } message DebugInfo { |