Chromium Code Reviews| Index: base/message_pump_glib.cc |
| =================================================================== |
| --- base/message_pump_glib.cc (revision 106774) |
| +++ base/message_pump_glib.cc (working copy) |
| @@ -145,7 +145,7 @@ |
| wakeup_gpollfd_(new GPollFD) { |
| // Create our wakeup pipe, which is used to flag when work was scheduled. |
| int fds[2]; |
| - CHECK_EQ(pipe(fds), 0); |
| + DCHECK_EQ(pipe(fds), 0); |
|
jar (doing other things)
2011/10/23 00:36:28
This needs to be done for the side-effect of loadi
|
| wakeup_pipe_read_ = fds[0]; |
| wakeup_pipe_write_ = fds[1]; |
| wakeup_gpollfd_->fd = wakeup_pipe_read_; |