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

Unified Diff: chrome/nacl/nacl_listener.h

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, 7 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.h
===================================================================
--- chrome/nacl/nacl_listener.h (revision 136022)
+++ chrome/nacl/nacl_listener.h (working copy)
@@ -12,6 +12,7 @@
#include "base/synchronization/waitable_event.h"
#include "base/threading/thread.h"
#include "chrome/common/nacl_types.h"
+#include "chrome/nacl/nacl_ipc_manager.h"
#include "ipc/ipc_channel.h"
namespace IPC {
@@ -47,6 +48,9 @@
// Used to identify what thread we're on.
MessageLoop* main_loop_;
+ NaClIPCManager nacl_ipc_manager_;
dmichael (off chromium) 2012/05/10 19:38:58 I think this will be scoped_refptr<NaCLIPCAdapter>
dmichael (off chromium) 2012/05/10 19:38:58 I think this will be scoped_refptr<NaCLIPCAdapter>
+ void* nacl_ppapi_channel_;
dmichael (off chromium) 2012/05/10 19:38:58 And this is either NaClDesc*, or you might not nee
+
bool debug_enabled_;
DISALLOW_COPY_AND_ASSIGN(NaClListener);

Powered by Google App Engine
This is Rietveld 408576698