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

Unified Diff: components/nacl/loader/nacl_trusted_listener.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 | « components/nacl/loader/nacl_main.cc ('k') | components/nacl/renderer/manifest_service_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/loader/nacl_trusted_listener.cc
diff --git a/components/nacl/loader/nacl_trusted_listener.cc b/components/nacl/loader/nacl_trusted_listener.cc
index 76d0cee523d6462593fd4021af128e8085182a52..34912c6d81f1a5903026312a3934dfed8e5c8b5c 100644
--- a/components/nacl/loader/nacl_trusted_listener.cc
+++ b/components/nacl/loader/nacl_trusted_listener.cc
@@ -37,12 +37,11 @@ NaClTrustedListener::NaClTrustedListener(
base::SingleThreadTaskRunner* ipc_task_runner,
base::WaitableEvent* shutdown_event)
: channel_handle_(handle) {
- channel_ = IPC::SyncChannel::Create(handle,
- IPC::Channel::MODE_SERVER,
- this,
- ipc_task_runner,
- true, /* create_channel_now */
- shutdown_event).Pass();
+ // TODO(erikchen): fixme
+ channel_ =
+ IPC::SyncChannel::Create(handle, IPC::Channel::MODE_SERVER, this,
+ ipc_task_runner, true, /* create_channel_now */
+ shutdown_event, nullptr).Pass();
channel_->AddFilter(new EOFMessageFilter());
}
« no previous file with comments | « components/nacl/loader/nacl_main.cc ('k') | components/nacl/renderer/manifest_service_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698