Index: ipc/ipc_channel_win.cc |
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc |
index d044ef179f470528bd73e2463241108ad923c369..3f2c79a5e83a899eec30177c9115c4cd039db26c 100644 |
--- a/ipc/ipc_channel_win.cc |
+++ b/ipc/ipc_channel_win.cc |
@@ -81,6 +81,7 @@ void Channel::ChannelImpl::Close() { |
} |
bool Channel::ChannelImpl::Send(Message* message) { |
+ CHECK(message) << "crbug.com/357915"; // TODO(vtl): Remove once bug resolved. |
no sievers
2014/03/29 20:48:40
I think we need more sanity checking on the messag
|
DCHECK(thread_check_->CalledOnValidThread()); |
DVLOG(2) << "sending message @" << message << " on channel @" << this |
<< " with type " << message->type() |