| Index: trunk/src/tools/ipc_fuzzer/replay/replay_process.cc
|
| ===================================================================
|
| --- trunk/src/tools/ipc_fuzzer/replay/replay_process.cc (revision 274314)
|
| +++ trunk/src/tools/ipc_fuzzer/replay/replay_process.cc (working copy)
|
| @@ -55,8 +55,11 @@
|
| CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| switches::kProcessChannelID);
|
|
|
| - channel_ = IPC::ChannelProxy::CreateClient(
|
| - channel_name, this, io_thread_.message_loop_proxy());
|
| + channel_.reset(
|
| + new IPC::ChannelProxy(channel_name,
|
| + IPC::Channel::MODE_CLIENT,
|
| + this,
|
| + io_thread_.message_loop_proxy()));
|
| }
|
|
|
| bool ReplayProcess::OpenTestcase() {
|
|
|