OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/process/process.h" | 10 #include "base/process/process.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "components/nacl/common/nacl_types.h" | 12 #include "components/nacl/common/nacl_types.h" |
13 #include "components/nacl/common/nacl_types_param_traits.h" | 13 #include "components/nacl/common/nacl_types_param_traits.h" |
14 #include "components/nacl/common/pnacl_types.h" | 14 #include "components/nacl/common/pnacl_types.h" |
15 #include "content/public/common/common_param_traits.h" | 15 #include "content/public/common/common_param_traits.h" |
16 #include "ipc/ipc_channel_handle.h" | 16 #include "ipc/ipc_channel_handle.h" |
17 #include "ipc/ipc_message_macros.h" | 17 #include "ipc/ipc_message_macros.h" |
18 #include "ipc/ipc_platform_file.h" | 18 #include "ipc/ipc_platform_file.h" |
19 #include "url/gurl.h" | 19 #include "url/gurl.h" |
20 | 20 |
21 #define IPC_MESSAGE_START NaClHostMsgStart | 21 #define IPC_MESSAGE_START NaClHostMsgStart |
22 | 22 |
23 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams) | 23 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams) |
24 IPC_STRUCT_TRAITS_MEMBER(manifest_url) | 24 IPC_STRUCT_TRAITS_MEMBER(manifest_url) |
25 IPC_STRUCT_TRAITS_MEMBER(nexe_file) | 25 IPC_STRUCT_TRAITS_MEMBER(nexe_file) |
26 IPC_STRUCT_TRAITS_MEMBER(nexe_token_lo) | 26 IPC_STRUCT_TRAITS_MEMBER(nexe_token_lo) |
27 IPC_STRUCT_TRAITS_MEMBER(nexe_token_hi) | 27 IPC_STRUCT_TRAITS_MEMBER(nexe_token_hi) |
28 IPC_STRUCT_TRAITS_MEMBER(resource_files_info) | |
28 IPC_STRUCT_TRAITS_MEMBER(render_view_id) | 29 IPC_STRUCT_TRAITS_MEMBER(render_view_id) |
29 IPC_STRUCT_TRAITS_MEMBER(permission_bits) | 30 IPC_STRUCT_TRAITS_MEMBER(permission_bits) |
30 IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode) | 31 IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode) |
31 IPC_STRUCT_TRAITS_MEMBER(process_type) | 32 IPC_STRUCT_TRAITS_MEMBER(process_type) |
32 IPC_STRUCT_TRAITS_END() | 33 IPC_STRUCT_TRAITS_END() |
33 | 34 |
34 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) | 35 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) |
35 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) | 36 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) |
36 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) | 37 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) |
37 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) | 38 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) |
38 IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle) | 39 IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle) |
39 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) | 40 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) |
40 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) | 41 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) |
41 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) | 42 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) |
42 IPC_STRUCT_TRAITS_END() | 43 IPC_STRUCT_TRAITS_END() |
43 | 44 |
44 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) | 45 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) |
45 IPC_STRUCT_TRAITS_MEMBER(pexe_url) | 46 IPC_STRUCT_TRAITS_MEMBER(pexe_url) |
46 IPC_STRUCT_TRAITS_MEMBER(abi_version) | 47 IPC_STRUCT_TRAITS_MEMBER(abi_version) |
47 IPC_STRUCT_TRAITS_MEMBER(opt_level) | 48 IPC_STRUCT_TRAITS_MEMBER(opt_level) |
48 IPC_STRUCT_TRAITS_MEMBER(last_modified) | 49 IPC_STRUCT_TRAITS_MEMBER(last_modified) |
49 IPC_STRUCT_TRAITS_MEMBER(etag) | 50 IPC_STRUCT_TRAITS_MEMBER(etag) |
50 IPC_STRUCT_TRAITS_MEMBER(has_no_store_header) | 51 IPC_STRUCT_TRAITS_MEMBER(has_no_store_header) |
51 IPC_STRUCT_TRAITS_MEMBER(sandbox_isa) | 52 IPC_STRUCT_TRAITS_MEMBER(sandbox_isa) |
52 IPC_STRUCT_TRAITS_MEMBER(extra_flags) | 53 IPC_STRUCT_TRAITS_MEMBER(extra_flags) |
53 IPC_STRUCT_TRAITS_END() | 54 IPC_STRUCT_TRAITS_END() |
54 | 55 |
56 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClResourceFileInfo) | |
57 IPC_STRUCT_TRAITS_MEMBER(file) | |
58 IPC_STRUCT_TRAITS_MEMBER(file_token_lo) | |
59 IPC_STRUCT_TRAITS_MEMBER(file_token_hi) | |
60 IPC_STRUCT_TRAITS_MEMBER(key) | |
61 IPC_STRUCT_TRAITS_END() | |
62 | |
55 // A renderer sends this to the browser process when it wants to start | 63 // A renderer sends this to the browser process when it wants to start |
56 // a new instance of the Native Client process. The browser will launch | 64 // a new instance of the Native Client process. The browser will launch |
57 // the process and return an IPC channel handle. This handle will only | 65 // the process and return an IPC channel handle. This handle will only |
58 // be valid if the NaCl IPC proxy is enabled. | 66 // be valid if the NaCl IPC proxy is enabled. |
59 IPC_SYNC_MESSAGE_CONTROL1_2(NaClHostMsg_LaunchNaCl, | 67 IPC_SYNC_MESSAGE_CONTROL1_2(NaClHostMsg_LaunchNaCl, |
60 nacl::NaClLaunchParams /* launch_params */, | 68 nacl::NaClLaunchParams /* launch_params */, |
61 nacl::NaClLaunchResult /* launch_result */, | 69 nacl::NaClLaunchResult /* launch_result */, |
62 std::string /* error_message */) | 70 std::string /* error_message */) |
63 | 71 |
64 // A renderer sends this to the browser process when it wants to | 72 // A renderer sends this to the browser process when it wants to |
65 // open a file for from the Pnacl component directory. | 73 // open a file for from the Pnacl component directory. |
66 IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_GetReadonlyPnaclFD, | 74 IPC_SYNC_MESSAGE_CONTROL2_3(NaClHostMsg_GetReadonlyPnaclFD, |
67 std::string /* name of requested PNaCl file */, | 75 std::string /* name of requested PNaCl file */, |
68 bool /* is_executable */, | 76 bool /* is_executable */, |
69 IPC::PlatformFileForTransit /* output file */, | 77 IPC::PlatformFileForTransit /* output file */, |
Yusuke Sato
2015/02/11 05:54:21
reverted to the original code
| |
70 uint64_t /* file_token_lo */, | 78 uint64_t /* file_token_lo */, |
71 uint64_t /* file_token_hi */) | 79 uint64_t /* file_token_hi */); |
Mark Seaborn
2015/02/12 03:57:33
Nit: remove stray semicolon
Yusuke Sato
2015/02/13 23:01:16
Done.
| |
72 | 80 |
73 // A renderer sends this to the browser process when it wants to | 81 // A renderer sends this to the browser process when it wants to |
74 // create a temporary file. | 82 // create a temporary file. |
75 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClCreateTemporaryFile, | 83 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClCreateTemporaryFile, |
76 IPC::PlatformFileForTransit /* out file */) | 84 IPC::PlatformFileForTransit /* out file */) |
77 | 85 |
78 // A renderer sends this to the browser to request a file descriptor for | 86 // A renderer sends this to the browser to request a file descriptor for |
79 // a translated nexe. | 87 // a translated nexe. |
80 IPC_MESSAGE_CONTROL3(NaClHostMsg_NexeTempFileRequest, | 88 IPC_MESSAGE_CONTROL3(NaClHostMsg_NexeTempFileRequest, |
81 int /* render_view_id */, | 89 int /* render_view_id */, |
(...skipping 13 matching lines...) Loading... | |
95 IPC_MESSAGE_CONTROL2(NaClHostMsg_ReportTranslationFinished, | 103 IPC_MESSAGE_CONTROL2(NaClHostMsg_ReportTranslationFinished, |
96 int /* instance */, | 104 int /* instance */, |
97 bool /* success */) | 105 bool /* success */) |
98 | 106 |
99 // A renderer sends this to the browser process to report when the client | 107 // A renderer sends this to the browser process to report when the client |
100 // architecture is not listed in the manifest. | 108 // architecture is not listed in the manifest. |
101 IPC_MESSAGE_CONTROL1(NaClHostMsg_MissingArchError, | 109 IPC_MESSAGE_CONTROL1(NaClHostMsg_MissingArchError, |
102 int /* render_view_id */) | 110 int /* render_view_id */) |
103 | 111 |
104 // A renderer sends this to the browser process when it wants to | 112 // A renderer sends this to the browser process when it wants to |
105 // open a NaCl executable file from an installed application directory. | 113 // open a NaCl executable file from an installed application directory. |
Mark Seaborn
2015/02/12 03:57:33
I think this comment needs updating.
Yusuke Sato
2015/02/13 23:01:16
Done (reverted to the original IPC definition)
| |
106 IPC_SYNC_MESSAGE_CONTROL3_3(NaClHostMsg_OpenNaClExecutable, | 114 IPC_SYNC_MESSAGE_CONTROL3_1( |
107 int /* render_view_id */, | 115 NaClHostMsg_OpenNaClResources, |
108 GURL /* URL of NaCl executable file */, | 116 int /* render_view_id */, |
109 bool /* enable_validation_caching */, | 117 std::vector<GURL> /* URLs of NaCl resource files */, |
110 IPC::PlatformFileForTransit /* output file */, | 118 bool /* enable_validation_caching */, |
111 uint64 /* file_token_lo */, | 119 std::vector<nacl::NaClResourceFileInfo> /* open_result */) |
112 uint64 /* file_token_hi */) | |
113 | 120 |
114 // A renderer sends this to the browser process to determine how many | 121 // A renderer sends this to the browser process to determine how many |
115 // processors are online. | 122 // processors are online. |
116 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, | 123 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, |
117 int /* Number of processors */) | 124 int /* Number of processors */) |
118 | 125 |
119 // A renderer sends this to the browser process to determine if the | 126 // A renderer sends this to the browser process to determine if the |
120 // NaCl application started from the given NMF URL will be debugged. | 127 // NaCl application started from the given NMF URL will be debugged. |
121 // If not (filtered out by commandline flags), it sets should_debug to false. | 128 // If not (filtered out by commandline flags), it sets should_debug to false. |
122 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, | 129 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, |
123 GURL /* alleged URL of NMF file */, | 130 GURL /* alleged URL of NMF file */, |
124 bool /* should debug */) | 131 bool /* should debug */) |
OLD | NEW |