| Index: ipc/ipc_sync_channel.cc
|
| diff --git a/ipc/ipc_sync_channel.cc b/ipc/ipc_sync_channel.cc
|
| index 5cc4729732e697046e9b3e2b83a7ebfba830ee6b..97e1c18d3e979ec36cf031ffcaa5f63a77fe47e7 100644
|
| --- a/ipc/ipc_sync_channel.cc
|
| +++ b/ipc/ipc_sync_channel.cc
|
| @@ -361,7 +361,7 @@ void SyncChannel::SyncContext::OnWaitableEventSignaled(WaitableEvent* event) {
|
| CancelPendingSends();
|
| } else {
|
| // We got the reply, timed out or the process shutdown.
|
| - DCHECK(event == GetSendDoneEvent());
|
| + DCHECK_EQ(GetSendDoneEvent(), event);
|
| MessageLoop::current()->QuitNow();
|
| }
|
| }
|
|
|