| Index: mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| diff --git a/mojo/edk/system/remote_data_pipe_impl_unittest.cc b/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| index bde5087a8357511d07e192383ec6960e11bdb01e..9930da2770fa347193d4d368680ebf303172c5b8 100644
|
| --- a/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| +++ b/mojo/edk/system/remote_data_pipe_impl_unittest.cc
|
| @@ -89,10 +89,14 @@ class RemoteDataPipeImplTest : public testing::Test {
|
|
|
| embedder::PlatformChannelPair channel_pair;
|
| channels_[0] = MakeRefCounted<Channel>(&platform_support_);
|
| - channels_[0]->Init(RawChannel::Create(channel_pair.PassServerHandle()));
|
| + channels_[0]->Init(io_thread_.task_runner().Clone(),
|
| + io_thread_.platform_handle_watcher(),
|
| + RawChannel::Create(channel_pair.PassServerHandle()));
|
| channels_[0]->SetBootstrapEndpoint(std::move(ep0));
|
| channels_[1] = MakeRefCounted<Channel>(&platform_support_);
|
| - channels_[1]->Init(RawChannel::Create(channel_pair.PassClientHandle()));
|
| + channels_[1]->Init(io_thread_.task_runner().Clone(),
|
| + io_thread_.platform_handle_watcher(),
|
| + RawChannel::Create(channel_pair.PassClientHandle()));
|
| channels_[1]->SetBootstrapEndpoint(std::move(ep1));
|
| }
|
|
|
|
|