| Index: base/message_pump_win.cc
|
| diff --git a/base/message_pump_win.cc b/base/message_pump_win.cc
|
| index d3f36218cac5779299bb970a70768bc6b934f8c3..73fc3aee2c1cf8d0e0a85a6e00f44c5e4e550026 100644
|
| --- a/base/message_pump_win.cc
|
| +++ b/base/message_pump_win.cc
|
| @@ -470,7 +470,7 @@ void MessagePumpForIO::DoRunLoop() {
|
| void MessagePumpForIO::WaitForWork() {
|
| // We do not support nested IO message loops. This is to avoid messy
|
| // recursion problems.
|
| - DCHECK(state_->run_depth == 1) << "Cannot nest an IO message loop!";
|
| + DCHECK_EQ(state_->run_depth, 1) << "Cannot nest an IO message loop!";
|
|
|
| int timeout = GetCurrentDelay();
|
| if (timeout < 0) // Negative value means no timers waiting.
|
|
|