Index: ppapi/proxy/proxy_channel.cc |
diff --git a/ppapi/proxy/proxy_channel.cc b/ppapi/proxy/proxy_channel.cc |
index 2784e4b978bce53cbe57bebd930fd000bcebc705..dd95c912bfa7e6d529279cecf74ff7cf291ac1fe 100644 |
--- a/ppapi/proxy/proxy_channel.cc |
+++ b/ppapi/proxy/proxy_channel.cc |
@@ -34,9 +34,10 @@ bool ProxyChannel::InitWithChannel(Delegate* delegate, |
IPC::Channel::Mode mode = is_client |
? IPC::Channel::MODE_CLIENT |
: IPC::Channel::MODE_SERVER; |
+ // TODO(erikchen): fixme. |
channel_ = IPC::SyncChannel::Create(channel_handle, mode, this, |
delegate->GetIPCTaskRunner(), true, |
- delegate->GetShutdownEvent()); |
+ delegate->GetShutdownEvent(), nullptr); |
return true; |
} |