| Index: ipc/ipc_sync_channel.cc
|
| diff --git a/ipc/ipc_sync_channel.cc b/ipc/ipc_sync_channel.cc
|
| index 1ce9f6cf7bc25fabf5d7c6bc348bf215d309ebc0..50d48ea3169f3abf83dcdf81f0d82736541dee78 100644
|
| --- a/ipc/ipc_sync_channel.cc
|
| +++ b/ipc/ipc_sync_channel.cc
|
| @@ -395,7 +395,7 @@ void SyncChannel::SyncContext::OnWaitableEventSignaled(WaitableEvent* event) {
|
| } else {
|
| // We got the reply, timed out or the process shutdown.
|
| DCHECK_EQ(GetSendDoneEvent(), event);
|
| - MessageLoop::current()->QuitNow();
|
| + base::MessageLoop::current()->QuitNow();
|
| }
|
| }
|
|
|
| @@ -542,8 +542,9 @@ void SyncChannel::WaitForReplyWithNestedMessageLoop(SyncContext* context) {
|
| context->MakeWaitableEventCallback());
|
|
|
| {
|
| - MessageLoop::ScopedNestableTaskAllower allow(MessageLoop::current());
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::ScopedNestableTaskAllower allow(
|
| + base::MessageLoop::current());
|
| + base::MessageLoop::current()->Run();
|
| }
|
|
|
| sync_msg_queue->set_top_send_done_watcher(old_send_done_event_watcher);
|
|
|