| Index: components/nacl/renderer/trusted_plugin_channel.cc
 | 
| diff --git a/components/nacl/renderer/trusted_plugin_channel.cc b/components/nacl/renderer/trusted_plugin_channel.cc
 | 
| index 1ba39fe1efa48025d970c015fc87788197ec0ba5..8428cbb711ee1649e8197267bbba0c9c1db3b918 100644
 | 
| --- a/components/nacl/renderer/trusted_plugin_channel.cc
 | 
| +++ b/components/nacl/renderer/trusted_plugin_channel.cc
 | 
| @@ -23,12 +23,9 @@ TrustedPluginChannel::TrustedPluginChannel(
 | 
|      : nexe_load_manager_(nexe_load_manager),
 | 
|        is_helper_nexe_(is_helper_nexe) {
 | 
|    channel_ = IPC::SyncChannel::Create(
 | 
| -      handle,
 | 
| -      IPC::Channel::MODE_CLIENT,
 | 
| -      this,
 | 
| -      content::RenderThread::Get()->GetIOMessageLoopProxy(),
 | 
| -      true,
 | 
| -      shutdown_event).Pass();
 | 
| +      handle, IPC::Channel::MODE_CLIENT, this,
 | 
| +      content::RenderThread::Get()->GetIOMessageLoopProxy(), true,
 | 
| +      shutdown_event);
 | 
|  }
 | 
|  
 | 
|  TrustedPluginChannel::~TrustedPluginChannel() {
 | 
| 
 |