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 // Defines messages between the browser and NaCl process. | 5 // Defines messages between the browser and NaCl process. |
6 | 6 |
7 // Multiply-included message file, no traditional include guard. | 7 // Multiply-included message file, no traditional include guard. |
8 #include "base/process/process.h" | 8 #include "base/process/process.h" |
9 #include "components/nacl/common/nacl_types.h" | 9 #include "components/nacl/common/nacl_types.h" |
10 #include "components/nacl/common/nacl_types_param_traits.h" | 10 #include "components/nacl/common/nacl_types_param_traits.h" |
11 #include "ipc/ipc_channel_handle.h" | 11 #include "ipc/ipc_channel_handle.h" |
12 #include "ipc/ipc_message_macros.h" | 12 #include "ipc/ipc_message_macros.h" |
13 #include "ipc/ipc_platform_file.h" | 13 #include "ipc/ipc_platform_file.h" |
14 | 14 |
15 #define IPC_MESSAGE_START NaClMsgStart | 15 #define IPC_MESSAGE_START NaClMsgStart |
16 | 16 |
17 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams) | 17 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams) |
18 IPC_STRUCT_TRAITS_MEMBER(nexe_file) | 18 IPC_STRUCT_TRAITS_MEMBER(nexe_file) |
19 IPC_STRUCT_TRAITS_MEMBER(nexe_file_path_metadata) | 19 IPC_STRUCT_TRAITS_MEMBER(nexe_file_path_metadata) |
20 IPC_STRUCT_TRAITS_MEMBER(prefetched_resource_files) | 20 IPC_STRUCT_TRAITS_MEMBER(prefetched_resource_files) |
21 IPC_STRUCT_TRAITS_MEMBER(handles) | 21 IPC_STRUCT_TRAITS_MEMBER(imc_bootstrap_handle) |
| 22 IPC_STRUCT_TRAITS_MEMBER(irt_handle) |
| 23 #if defined(OS_MACOSX) |
| 24 IPC_STRUCT_TRAITS_MEMBER(mac_shm_fd) |
| 25 #endif |
| 26 #if defined(OS_POSIX) |
22 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) | 27 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) |
| 28 #endif |
23 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) | 29 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) |
24 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key) | 30 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key) |
25 IPC_STRUCT_TRAITS_MEMBER(version) | 31 IPC_STRUCT_TRAITS_MEMBER(version) |
26 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub) | 32 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub) |
27 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy) | 33 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy) |
28 IPC_STRUCT_TRAITS_MEMBER(process_type) | 34 IPC_STRUCT_TRAITS_MEMBER(process_type) |
29 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) | 35 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) |
30 IPC_STRUCT_TRAITS_END() | 36 IPC_STRUCT_TRAITS_END() |
31 | 37 |
32 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClResourceFileInfo) | 38 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClResourcePrefetchResult) |
33 IPC_STRUCT_TRAITS_MEMBER(file) | 39 IPC_STRUCT_TRAITS_MEMBER(file) |
34 IPC_STRUCT_TRAITS_MEMBER(file_path_metadata) | 40 IPC_STRUCT_TRAITS_MEMBER(file_path_metadata) |
35 IPC_STRUCT_TRAITS_MEMBER(file_key) | 41 IPC_STRUCT_TRAITS_MEMBER(file_key) |
36 IPC_STRUCT_TRAITS_END() | 42 IPC_STRUCT_TRAITS_END() |
37 | 43 |
38 //----------------------------------------------------------------------------- | 44 //----------------------------------------------------------------------------- |
39 // NaClProcess messages | 45 // NaClProcess messages |
40 // These are messages sent between the browser and the NaCl process. | 46 // These are messages sent between the browser and the NaCl process. |
41 // Tells the NaCl process to start. | 47 // Tells the NaCl process to start. |
42 IPC_MESSAGE_CONTROL1(NaClProcessMsg_Start, | 48 IPC_MESSAGE_CONTROL1(NaClProcessMsg_Start, |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 IPC::PlatformFileForTransit, /* fd */ | 111 IPC::PlatformFileForTransit, /* fd */ |
106 base::FilePath /* Path opened to get fd */) | 112 base::FilePath /* Path opened to get fd */) |
107 | 113 |
108 // Notify the browser process that the server side of the PPAPI channel was | 114 // Notify the browser process that the server side of the PPAPI channel was |
109 // created successfully. | 115 // created successfully. |
110 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, | 116 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, |
111 IPC::ChannelHandle, /* browser_channel_handle */ | 117 IPC::ChannelHandle, /* browser_channel_handle */ |
112 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ | 118 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ |
113 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ | 119 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ |
114 IPC::ChannelHandle /* manifest_service_channel_handle */) | 120 IPC::ChannelHandle /* manifest_service_channel_handle */) |
OLD | NEW |