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" |
(...skipping 22 matching lines...) Expand all Loading... |
33 IPC_STRUCT_TRAITS_MEMBER(enable_crash_throttling) | 33 IPC_STRUCT_TRAITS_MEMBER(enable_crash_throttling) |
34 IPC_STRUCT_TRAITS_END() | 34 IPC_STRUCT_TRAITS_END() |
35 | 35 |
36 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) | 36 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) |
37 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) | 37 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) |
38 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) | 38 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) |
39 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) | 39 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) |
40 IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle) | 40 IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle) |
41 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) | 41 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) |
42 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) | 42 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) |
| 43 IPC_STRUCT_TRAITS_MEMBER(crash_info_shmem_handle) |
43 IPC_STRUCT_TRAITS_END() | 44 IPC_STRUCT_TRAITS_END() |
44 | 45 |
45 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) | 46 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) |
46 IPC_STRUCT_TRAITS_MEMBER(pexe_url) | 47 IPC_STRUCT_TRAITS_MEMBER(pexe_url) |
47 IPC_STRUCT_TRAITS_MEMBER(abi_version) | 48 IPC_STRUCT_TRAITS_MEMBER(abi_version) |
48 IPC_STRUCT_TRAITS_MEMBER(opt_level) | 49 IPC_STRUCT_TRAITS_MEMBER(opt_level) |
49 IPC_STRUCT_TRAITS_MEMBER(last_modified) | 50 IPC_STRUCT_TRAITS_MEMBER(last_modified) |
50 IPC_STRUCT_TRAITS_MEMBER(etag) | 51 IPC_STRUCT_TRAITS_MEMBER(etag) |
51 IPC_STRUCT_TRAITS_MEMBER(has_no_store_header) | 52 IPC_STRUCT_TRAITS_MEMBER(has_no_store_header) |
52 IPC_STRUCT_TRAITS_MEMBER(sandbox_isa) | 53 IPC_STRUCT_TRAITS_MEMBER(sandbox_isa) |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 // processors are online. | 116 // processors are online. |
116 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, | 117 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, |
117 int /* Number of processors */) | 118 int /* Number of processors */) |
118 | 119 |
119 // A renderer sends this to the browser process to determine if the | 120 // A renderer sends this to the browser process to determine if the |
120 // NaCl application started from the given NMF URL will be debugged. | 121 // 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. | 122 // If not (filtered out by commandline flags), it sets should_debug to false. |
122 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, | 123 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, |
123 GURL /* alleged URL of NMF file */, | 124 GURL /* alleged URL of NMF file */, |
124 bool /* should debug */) | 125 bool /* should debug */) |
OLD | NEW |