| Index: trunk/src/components/nacl/renderer/trusted_plugin_channel.cc
|
| ===================================================================
|
| --- trunk/src/components/nacl/renderer/trusted_plugin_channel.cc (revision 274314)
|
| +++ trunk/src/components/nacl/renderer/trusted_plugin_channel.cc (working copy)
|
| @@ -17,8 +17,8 @@
|
| const base::Callback<void(int32_t)>& connected_callback,
|
| base::WaitableEvent* waitable_event)
|
| : connected_callback_(connected_callback),
|
| - channel_(IPC::SyncChannel::CreateClient(
|
| - handle, this,
|
| + channel_(new IPC::SyncChannel(
|
| + handle, IPC::Channel::MODE_CLIENT, this,
|
| content::RenderThread::Get()->GetIOMessageLoopProxy(), true,
|
| waitable_event)) {
|
| }
|
|
|