Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: ppapi/proxy/proxy_channel.cc

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/nacl_irt/ppapi_dispatcher.cc ('k') | remoting/host/desktop_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « ppapi/nacl_irt/ppapi_dispatcher.cc ('k') | remoting/host/desktop_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698