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

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

Issue 469423002: NaCl: Send fatal log messages via shared memory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove commented out line Created 6 years, 4 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
« no previous file with comments | « components/nacl/browser/nacl_process_host.cc ('k') | components/nacl/common/nacl_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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
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
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 */)
OLDNEW
« no previous file with comments | « components/nacl/browser/nacl_process_host.cc ('k') | components/nacl/common/nacl_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698