diff options
author | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 19:34:43 +0000 |
---|---|---|
committer | scottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-20 19:34:43 +0000 |
commit | ea7744a0da59d3033b1c02d6794142fb11ae0a0e (patch) | |
tree | 54c26739c591337d851fce75978b8b9671fbd846 /ipc/ipc_message_utils.h | |
parent | d045e0b4e74f9a45ed97974b03a2f231657f3acd (diff) | |
download | chromium_src-ea7744a0da59d3033b1c02d6794142fb11ae0a0e.zip chromium_src-ea7744a0da59d3033b1c02d6794142fb11ae0a0e.tar.gz chromium_src-ea7744a0da59d3033b1c02d6794142fb11ae0a0e.tar.bz2 |
More message names and some timing output for the IPC logging.
With ANSI color if asked for.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8319023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_utils.h')
-rw-r--r-- | ipc/ipc_message_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h index 91af787..e151649 100644 --- a/ipc/ipc_message_utils.h +++ b/ipc/ipc_message_utils.h @@ -999,7 +999,7 @@ class MessageSchema { // defined in ipc_logging.cc IPC_EXPORT void GenerateLogData(const std::string& channel, const Message& message, - LogData* data); + LogData* data, bool get_params); #if defined(IPC_MESSAGE_LOG_ENABLED) @@ -1027,7 +1027,7 @@ inline void ConnectMessageAndReply(const Message* msg, Message* reply) { // output parameters at that point. Instead, save its data and log it // with the outgoing reply message when it's sent. LogData* data = new LogData; - GenerateLogData("", *msg, data); + GenerateLogData("", *msg, data, true); msg->set_dont_log(); reply->set_sync_log_data(data); } |