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

Unified Diff: chrome/nacl/nacl_listener.cc

Issue 10214007: Add an IPC channel between the NaCl loader process and the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
Index: chrome/nacl/nacl_listener.cc
===================================================================
--- chrome/nacl/nacl_listener.cc (revision 133072)
+++ chrome/nacl/nacl_listener.cc (working copy)
@@ -180,6 +180,11 @@
return;
}
+ scoped_ptr<IPC::SyncChannel> ipc_channel(
+ new IPC::SyncChannel(this, io_thread_.message_loop_proxy(),
+ &shutdown_event_));
+ ipc_channel->Init(params.channel_name, IPC::Channel::MODE_SERVER, true);
dmichael (off chromium) 2012/04/25 21:06:00 You're not doing anything with ipc_channel yet. Is
+
std::vector<nacl::FileDescriptor> handles = params.handles;
#if defined(OS_LINUX) || defined(OS_MACOSX)
« chrome/browser/nacl_host/nacl_process_host.cc ('K') | « chrome/common/nacl_types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698