diff options
Diffstat (limited to 'chrome/common/ipc_channel_posix.cc')
-rw-r--r-- | chrome/common/ipc_channel_posix.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/ipc_channel_posix.cc b/chrome/common/ipc_channel_posix.cc index 20d5f7a..23c008a 100644 --- a/chrome/common/ipc_channel_posix.cc +++ b/chrome/common/ipc_channel_posix.cc @@ -25,6 +25,7 @@ #include "chrome/common/chrome_counters.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/file_descriptor_set_posix.h" +#include "chrome/common/ipc_logging.h" #include "chrome/common/ipc_message_utils.h" namespace IPC { @@ -640,10 +641,9 @@ bool Channel::ChannelImpl::Send(Message* message) { << " (" << output_queue_.size() << " in queue)"; #endif -// TODO(playmobil): implement -// #ifdef IPC_MESSAGE_LOG_ENABLED -// Logging::current()->OnSendMessage(message, L""); -// #endif +#ifdef IPC_MESSAGE_LOG_ENABLED + Logging::current()->OnSendMessage(message, L""); +#endif output_queue_.push(message); if (!waiting_connect_) { |