From a75d421d3c4fcb0a442a81321a26d4981e4f5bd5 Mon Sep 17 00:00:00 2001 From: "maniscalco@chromium.org" Date: Sat, 23 Nov 2013 01:47:15 +0000 Subject: Send debug event info on Commit requests, not just GetUpdates requests. BUG=318439 Review URL: https://codereview.chromium.org/82303002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236914 0039d316-1c4b-4281-b951-d872f2087c98 --- sync/engine/commit.cc | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'sync/engine/commit.cc') diff --git a/sync/engine/commit.cc b/sync/engine/commit.cc index c7af449..a8db1a4 100644 --- a/sync/engine/commit.cc +++ b/sync/engine/commit.cc @@ -110,6 +110,11 @@ SyncerError Commit::PostAndProcessResponse( } session->mutable_status_controller()->set_commit_request_types(request_types); + if (session->context()->debug_info_getter()) { + sync_pb::DebugInfo* debug_info = message_.mutable_debug_info(); + session->context()->debug_info_getter()->GetDebugInfo(debug_info); + } + DVLOG(1) << "Sending commit message."; TRACE_EVENT_BEGIN0("sync", "PostCommit"); const SyncerError post_result = SyncerProtoUtil::PostClientToServerMessage( @@ -136,6 +141,12 @@ SyncerError Commit::PostAndProcessResponse( return SERVER_RESPONSE_VALIDATION_FAILED; } + if (session->context()->debug_info_getter()) { + // Clear debug info now that we have successfully sent it to the server. + DVLOG(1) << "Clearing client debug info."; + session->context()->debug_info_getter()->ClearDebugInfo(); + } + // Let the contributors process the responses to each of their requests. SyncerError processing_result = SYNCER_OK; for (std::map::iterator it = -- cgit v1.1