From a89a21c70614f905580d8759a109094a2e8b8ba7 Mon Sep 17 00:00:00 2001 From: "samuel.xu@intel.com" Date: Tue, 3 Jul 2012 02:24:32 +0000 Subject: This change list fixed the issue of #135391, sometimes the channel_id of Logged IPC message is empty BUG=135391 TEST=about:ipc using debug windows version chromium Review URL: https://chromiumcodereview.appspot.com/10701052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145242 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc_logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipc') diff --git a/ipc/ipc_logging.cc b/ipc/ipc_logging.cc index 25286b1..9dde5a5 100644 --- a/ipc/ipc_logging.cc +++ b/ipc/ipc_logging.cc @@ -130,8 +130,8 @@ void Logging::OnSendMessage(Message* message, const std::string& channel_id) { // This is actually the delayed reply to a sync message. Create a string // of the output parameters, add it to the LogData that was earlier stashed // with the reply, and log the result. - data->channel = channel_id; GenerateLogData("", *message, data, true); + data->channel = channel_id; Log(*data); delete data; message->set_sync_log_data(NULL); -- cgit v1.1