| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.h" | 8 #include "base/process.h" |
| 9 #include "chrome/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(handles) | 17 IPC_STRUCT_TRAITS_MEMBER(handles) |
| 18 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) | 18 IPC_STRUCT_TRAITS_MEMBER(debug_stub_server_bound_socket) |
| 19 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) | 19 IPC_STRUCT_TRAITS_MEMBER(validation_cache_enabled) |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 IPC_SYNC_MESSAGE_CONTROL2_2(NaClProcessMsg_ResolveFileToken, | 85 IPC_SYNC_MESSAGE_CONTROL2_2(NaClProcessMsg_ResolveFileToken, |
| 86 uint64, /* file_token_lo */ | 86 uint64, /* file_token_lo */ |
| 87 uint64, /* file_token_hi */ | 87 uint64, /* file_token_hi */ |
| 88 IPC::PlatformFileForTransit, /* fd */ | 88 IPC::PlatformFileForTransit, /* fd */ |
| 89 base::FilePath /* Path opened to get fd */) | 89 base::FilePath /* Path opened to get fd */) |
| 90 | 90 |
| 91 // Notify the browser process that the server side of the PPAPI channel was | 91 // Notify the browser process that the server side of the PPAPI channel was |
| 92 // created successfully. | 92 // created successfully. |
| 93 IPC_MESSAGE_CONTROL1(NaClProcessHostMsg_PpapiChannelCreated, | 93 IPC_MESSAGE_CONTROL1(NaClProcessHostMsg_PpapiChannelCreated, |
| 94 IPC::ChannelHandle /* channel_handle */) | 94 IPC::ChannelHandle /* channel_handle */) |
| OLD | NEW |