| Index: remoting/host/ipc_util_posix.cc
 | 
| diff --git a/remoting/host/ipc_util_posix.cc b/remoting/host/ipc_util_posix.cc
 | 
| index 4c7010b6a32a1b113627e919cc0e28ffcea839ad..b7c5277e22cf712881db3a15234e4912c4ebb177 100644
 | 
| --- a/remoting/host/ipc_util_posix.cc
 | 
| +++ b/remoting/host/ipc_util_posix.cc
 | 
| @@ -47,10 +47,8 @@ bool CreateConnectedIpcChannel(
 | 
|    base::FileDescriptor fd(pipe_fds[0], false);
 | 
|    IPC::ChannelHandle handle(socket_name, fd);
 | 
|    *server_out = IPC::ChannelProxy::Create(IPC::ChannelHandle(socket_name, fd),
 | 
| -                                          IPC::Channel::MODE_SERVER,
 | 
| -                                          listener,
 | 
| -                                          io_task_runner.get(),
 | 
| -                                          nullptr);
 | 
| +                                          IPC::Channel::MODE_SERVER, listener,
 | 
| +                                          io_task_runner.get());
 | 
|  
 | 
|    *client_out = base::File(pipe_fds[1]);
 | 
|    return true;
 | 
| 
 |