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

Unified Diff: components/nacl/common/nacl_types.h

Issue 231793003: Add IPC Channel for new ManifestService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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: components/nacl/common/nacl_types.h
diff --git a/components/nacl/common/nacl_types.h b/components/nacl/common/nacl_types.h
index 84904cc25d6493f358af41ed5a01444c1d4bfa8b..c0693129738e886afb66fa505ab416abd0df20be 100644
--- a/components/nacl/common/nacl_types.h
+++ b/components/nacl/common/nacl_types.h
@@ -89,11 +89,13 @@ struct NaClLaunchParams {
struct NaClLaunchResult {
NaClLaunchResult();
- NaClLaunchResult(FileDescriptor imc_channel_handle,
- const IPC::ChannelHandle& ppapi_ipc_channel_handle,
- const IPC::ChannelHandle& trusted_ipc_channel_handle,
- base::ProcessId plugin_pid,
- int plugin_child_id);
+ NaClLaunchResult(
+ FileDescriptor imc_channel_handle,
+ const IPC::ChannelHandle& ppapi_ipc_channel_handle,
+ const IPC::ChannelHandle& trusted_ipc_channel_handle,
+ const IPC::ChannelHandle& embedder_service_ipc_channel_handle,
+ base::ProcessId plugin_pid,
+ int plugin_child_id);
~NaClLaunchResult();
// For plugin loader <-> renderer IMC communication.
@@ -105,6 +107,10 @@ struct NaClLaunchResult {
// For plugin loader <-> renderer control communication (loading and
// starting nexe).
IPC::ChannelHandle trusted_ipc_channel_handle;
+
+ // For plugin <-> renderer EmbedderService communication.
+ IPC::ChannelHandle embedder_service_ipc_channel_handle;
+
base::ProcessId plugin_pid;
int plugin_child_id;
};

Powered by Google App Engine
This is Rietveld 408576698