Index: trunk/src/remoting/host/ipc_util_win.cc |
=================================================================== |
--- trunk/src/remoting/host/ipc_util_win.cc (revision 274314) |
+++ trunk/src/remoting/host/ipc_util_win.cc (working copy) |
@@ -51,10 +51,11 @@ |
} |
// Wrap the pipe into an IPC channel. |
- scoped_ptr<IPC::ChannelProxy> server = IPC::ChannelProxy::CreateServer( |
+ scoped_ptr<IPC::ChannelProxy> server(new IPC::ChannelProxy( |
IPC::ChannelHandle(pipe), |
+ IPC::Channel::MODE_SERVER, |
listener, |
- io_task_runner); |
+ io_task_runner)); |
// Convert the channel name to the pipe name. |
std::string pipe_name(kChromePipeNamePrefix); |