| 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 16 matching lines...) Expand all Loading... |
| 27 IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode) | 27 IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode) |
| 28 IPC_STRUCT_TRAITS_MEMBER(enable_dyncode_syscalls) | 28 IPC_STRUCT_TRAITS_MEMBER(enable_dyncode_syscalls) |
| 29 IPC_STRUCT_TRAITS_MEMBER(enable_exception_handling) | 29 IPC_STRUCT_TRAITS_MEMBER(enable_exception_handling) |
| 30 IPC_STRUCT_TRAITS_MEMBER(enable_crash_throttling) | 30 IPC_STRUCT_TRAITS_MEMBER(enable_crash_throttling) |
| 31 IPC_STRUCT_TRAITS_END() | 31 IPC_STRUCT_TRAITS_END() |
| 32 | 32 |
| 33 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) | 33 IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchResult) |
| 34 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) | 34 IPC_STRUCT_TRAITS_MEMBER(imc_channel_handle) |
| 35 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) | 35 IPC_STRUCT_TRAITS_MEMBER(ppapi_ipc_channel_handle) |
| 36 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) | 36 IPC_STRUCT_TRAITS_MEMBER(trusted_ipc_channel_handle) |
| 37 IPC_STRUCT_TRAITS_MEMBER(manifest_service_ipc_channel_handle) |
| 37 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) | 38 IPC_STRUCT_TRAITS_MEMBER(plugin_pid) |
| 38 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) | 39 IPC_STRUCT_TRAITS_MEMBER(plugin_child_id) |
| 39 IPC_STRUCT_TRAITS_END() | 40 IPC_STRUCT_TRAITS_END() |
| 40 | 41 |
| 41 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) | 42 IPC_STRUCT_TRAITS_BEGIN(nacl::PnaclCacheInfo) |
| 42 IPC_STRUCT_TRAITS_MEMBER(pexe_url) | 43 IPC_STRUCT_TRAITS_MEMBER(pexe_url) |
| 43 IPC_STRUCT_TRAITS_MEMBER(abi_version) | 44 IPC_STRUCT_TRAITS_MEMBER(abi_version) |
| 44 IPC_STRUCT_TRAITS_MEMBER(opt_level) | 45 IPC_STRUCT_TRAITS_MEMBER(opt_level) |
| 45 IPC_STRUCT_TRAITS_MEMBER(last_modified) | 46 IPC_STRUCT_TRAITS_MEMBER(last_modified) |
| 46 IPC_STRUCT_TRAITS_MEMBER(etag) | 47 IPC_STRUCT_TRAITS_MEMBER(etag) |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 // processors are online. | 109 // processors are online. |
| 109 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, | 110 IPC_SYNC_MESSAGE_CONTROL0_1(NaClHostMsg_NaClGetNumProcessors, |
| 110 int /* Number of processors */) | 111 int /* Number of processors */) |
| 111 | 112 |
| 112 // A renderer sends this to the browser process to determine if the | 113 // A renderer sends this to the browser process to determine if the |
| 113 // NaCl application started from the given NMF URL will be debugged. | 114 // NaCl application started from the given NMF URL will be debugged. |
| 114 // If not (filtered out by commandline flags), it sets should_debug to false. | 115 // If not (filtered out by commandline flags), it sets should_debug to false. |
| 115 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, | 116 IPC_SYNC_MESSAGE_CONTROL1_1(NaClHostMsg_NaClDebugEnabledForURL, |
| 116 GURL /* alleged URL of NMF file */, | 117 GURL /* alleged URL of NMF file */, |
| 117 bool /* should debug */) | 118 bool /* should debug */) |
| OLD | NEW |