| Index: mojo/edk/system/waiter_test_utils.cc
|
| diff --git a/mojo/edk/system/waiter_test_utils.cc b/mojo/edk/system/waiter_test_utils.cc
|
| index 5e3acf9df4db52f28ed760cb13bdd54b2057ffbb..b2423ab40de58959012a8c5697a359e1a0a5f746 100644
|
| --- a/mojo/edk/system/waiter_test_utils.cc
|
| +++ b/mojo/edk/system/waiter_test_utils.cc
|
| @@ -24,7 +24,7 @@ SimpleWaiterThread::~SimpleWaiterThread() {
|
| }
|
|
|
| void SimpleWaiterThread::Run() {
|
| - *result_ = waiter_.Wait(MOJO_DEADLINE_INDEFINITE, context_);
|
| + *result_ = waiter_.Wait(MOJO_DEADLINE_INDEFINITE, context_, nullptr);
|
| }
|
|
|
| WaiterThread::WaiterThread(RefPtr<Dispatcher>&& dispatcher,
|
| @@ -64,7 +64,7 @@ void WaiterThread::Run() {
|
| return;
|
|
|
| *did_wait_out_ = true;
|
| - *result_out_ = waiter_.Wait(deadline_, context_out_);
|
| + *result_out_ = waiter_.Wait(deadline_, context_out_, nullptr);
|
| dispatcher_->RemoveAwakable(&waiter_, signals_state_out_);
|
| }
|
|
|
|
|