| Index: remoting/host/ipc_util_posix.cc
|
| diff --git a/remoting/host/ipc_util_posix.cc b/remoting/host/ipc_util_posix.cc
|
| index e747a77765ddda649c23e15101fc43c86481dce9..55f215dd6c57d4a114fd5bb5e770c33546fe85e0 100644
|
| --- a/remoting/host/ipc_util_posix.cc
|
| +++ b/remoting/host/ipc_util_posix.cc
|
| @@ -45,11 +45,10 @@ bool CreateConnectedIpcChannel(
|
| // Wrap the pipe into an IPC channel.
|
| base::FileDescriptor fd(pipe_fds[0], false);
|
| IPC::ChannelHandle handle(socket_name, fd);
|
| - server_out->reset(new IPC::ChannelProxy(
|
| - IPC::ChannelHandle(socket_name, fd),
|
| - IPC::Channel::MODE_SERVER,
|
| - listener,
|
| - io_task_runner));
|
| + server_out->reset(new IPC::ChannelProxy(IPC::ChannelHandle(socket_name, fd),
|
| + IPC::Channel::MODE_SERVER,
|
| + listener,
|
| + io_task_runner.get()));
|
|
|
| *client_out = base::FileDescriptor(pipe_fds[1], false);
|
| return true;
|
|
|