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

Unified Diff: components/nacl/loader/nacl_listener.h

Issue 2305913002: Use ChannelMojo from the browser to NaCl loader process. (Closed)
Patch Set: Created 4 years, 3 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: components/nacl/loader/nacl_listener.h
diff --git a/components/nacl/loader/nacl_listener.h b/components/nacl/loader/nacl_listener.h
index 2b0fdb6f269a07ebbb528ea5df89dceefb8110f8..533681cd8e0f2d4dd2061ec9ab7411799550bf22 100644
--- a/components/nacl/loader/nacl_listener.h
+++ b/components/nacl/loader/nacl_listener.h
@@ -28,6 +28,12 @@ class SyncChannel;
class SyncMessageFilter;
}
+namespace mojo {
+namespace edk {
+class ScopedIPCSupport;
+} // namespace edk
+} // namespace mojo
+
// The NaClListener is an IPC channel listener that waits for a
// request to start a NaCl module.
class NaClListener : public IPC::Listener {
@@ -119,6 +125,8 @@ class NaClListener : public IPC::Listener {
bool is_started_;
+ std::unique_ptr<mojo::edk::ScopedIPCSupport> mojo_ipc_support_;
+
DISALLOW_COPY_AND_ASSIGN(NaClListener);
};

Powered by Google App Engine
This is Rietveld 408576698