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

Side by Side Diff: components/nacl/common/nacl_messages.h

Issue 649603004: Non-SFI NaCl: Batch-open resource files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 5 years, 10 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 unified diff | Download patch
OLDNEW
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(resource_files)
20 IPC_STRUCT_TRAITS_MEMBER(handles) 21 IPC_STRUCT_TRAITS_MEMBER(handles)
21 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) 22 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket)
22 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) 23 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled)
23 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key) 24 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key)
24 IPC_STRUCT_TRAITS_MEMBER(version) 25 IPC_STRUCT_TRAITS_MEMBER(version)
25 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub) 26 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub)
26 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy) 27 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy)
27 IPC_STRUCT_TRAITS_MEMBER(enable_mojo) 28 IPC_STRUCT_TRAITS_MEMBER(enable_mojo)
28 IPC_STRUCT_TRAITS_MEMBER(process_type) 29 IPC_STRUCT_TRAITS_MEMBER(process_type)
29 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) 30 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle)
30 IPC_STRUCT_TRAITS_END() 31 IPC_STRUCT_TRAITS_END()
31 32
33 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams::ResourceFileInfo)
34 IPC_STRUCT_TRAITS_MEMBER(file)
35 IPC_STRUCT_TRAITS_MEMBER(file_path)
36 IPC_STRUCT_TRAITS_MEMBER(file_key)
37 IPC_STRUCT_TRAITS_END()
38
32 //----------------------------------------------------------------------------- 39 //-----------------------------------------------------------------------------
33 // NaClProcess messages 40 // NaClProcess messages
34 // These are messages sent between the browser and the NaCl process. 41 // These are messages sent between the browser and the NaCl process.
35 // Tells the NaCl process to start. 42 // Tells the NaCl process to start.
36 IPC_MESSAGE_CONTROL1(NaClProcessMsg_Start, 43 IPC_MESSAGE_CONTROL1(NaClProcessMsg_Start,
37 nacl::NaClStartParams /* params */) 44 nacl::NaClStartParams /* params */)
38 45
39 #if defined(OS_WIN) 46 #if defined(OS_WIN)
40 // Tells the NaCl broker to launch a NaCl loader process. 47 // Tells the NaCl broker to launch a NaCl loader process.
41 IPC_MESSAGE_CONTROL1(NaClProcessMsg_LaunchLoaderThroughBroker, 48 IPC_MESSAGE_CONTROL1(NaClProcessMsg_LaunchLoaderThroughBroker,
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 IPC::PlatformFileForTransit, /* fd */ 106 IPC::PlatformFileForTransit, /* fd */
100 base::FilePath /* Path opened to get fd */) 107 base::FilePath /* Path opened to get fd */)
101 108
102 // Notify the browser process that the server side of the PPAPI channel was 109 // Notify the browser process that the server side of the PPAPI channel was
103 // created successfully. 110 // created successfully.
104 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, 111 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated,
105 IPC::ChannelHandle, /* browser_channel_handle */ 112 IPC::ChannelHandle, /* browser_channel_handle */
106 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ 113 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */
107 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ 114 IPC::ChannelHandle, /* trusted_renderer_channel_handle */
108 IPC::ChannelHandle /* manifest_service_channel_handle */) 115 IPC::ChannelHandle /* manifest_service_channel_handle */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698