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

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
« no previous file with comments | « components/nacl/common/nacl_messages.h ('k') | components/nacl/common/nacl_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..04a98489a7d711e2574e23112bbeb548ea48feb4 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& manifest_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 ManifestService communication.
+ IPC::ChannelHandle manifest_service_ipc_channel_handle;
+
base::ProcessId plugin_pid;
int plugin_child_id;
};
« no previous file with comments | « components/nacl/common/nacl_messages.h ('k') | components/nacl/common/nacl_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698