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

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

Issue 332463003: Pepper: Remove LOAD_MODULE SRPC call in SFI mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for mseaborn Created 6 years, 5 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 | Annotate | Revision Log
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 "ipc/ipc_channel_handle.h" 10 #include "ipc/ipc_channel_handle.h"
11 #include "ipc/ipc_message_macros.h" 11 #include "ipc/ipc_message_macros.h"
12 #include "ipc/ipc_platform_file.h" 12 #include "ipc/ipc_platform_file.h"
13 13
14 #define IPC_MESSAGE_START NaClMsgStart 14 #define IPC_MESSAGE_START NaClMsgStart
15 15
16 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams) 16 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams)
17 IPC_STRUCT_TRAITS_MEMBER(nexe_file) 17 IPC_STRUCT_TRAITS_MEMBER(nexe_file)
18 IPC_STRUCT_TRAITS_MEMBER(nexe_token_lo)
19 IPC_STRUCT_TRAITS_MEMBER(nexe_token_hi)
18 IPC_STRUCT_TRAITS_MEMBER(handles) 20 IPC_STRUCT_TRAITS_MEMBER(handles)
19 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) 21 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket)
20 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) 22 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled)
21 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key) 23 IPC_STRUCT_TRAITS_MEMBER(validation_cache_key)
22 IPC_STRUCT_TRAITS_MEMBER(version) 24 IPC_STRUCT_TRAITS_MEMBER(version)
23 IPC_STRUCT_TRAITS_MEMBER(enable_exception_handling) 25 IPC_STRUCT_TRAITS_MEMBER(enable_exception_handling)
24 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub) 26 IPC_STRUCT_TRAITS_MEMBER(enable_debug_stub)
25 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy) 27 IPC_STRUCT_TRAITS_MEMBER(enable_ipc_proxy)
26 IPC_STRUCT_TRAITS_MEMBER(uses_irt) 28 IPC_STRUCT_TRAITS_MEMBER(uses_irt)
27 IPC_STRUCT_TRAITS_MEMBER(enable_dyncode_syscalls) 29 IPC_STRUCT_TRAITS_MEMBER(enable_dyncode_syscalls)
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 IPC::PlatformFileForTransit, /* fd */ 96 IPC::PlatformFileForTransit, /* fd */
95 base::FilePath /* Path opened to get fd */) 97 base::FilePath /* Path opened to get fd */)
96 98
97 // Notify the browser process that the server side of the PPAPI channel was 99 // Notify the browser process that the server side of the PPAPI channel was
98 // created successfully. 100 // created successfully.
99 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated, 101 IPC_MESSAGE_CONTROL4(NaClProcessHostMsg_PpapiChannelsCreated,
100 IPC::ChannelHandle, /* browser_channel_handle */ 102 IPC::ChannelHandle, /* browser_channel_handle */
101 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */ 103 IPC::ChannelHandle, /* ppapi_renderer_channel_handle */
102 IPC::ChannelHandle, /* trusted_renderer_channel_handle */ 104 IPC::ChannelHandle, /* trusted_renderer_channel_handle */
103 IPC::ChannelHandle /* manifest_service_channel_handle */) 105 IPC::ChannelHandle /* manifest_service_channel_handle */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698