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 #include "components/nacl/common/nacl_switches.h" | 5 #include "components/nacl/common/nacl_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // Enables debugging via RSP over a socket. | 9 // Enables debugging via RSP over a socket. |
10 const char kEnableNaClDebug[] = "enable-nacl-debug"; | 10 const char kEnableNaClDebug[] = "enable-nacl-debug"; |
(...skipping 18 matching lines...) Expand all Loading... | |
29 // GDB script to pass to the nacl-gdb debugger at startup. | 29 // GDB script to pass to the nacl-gdb debugger at startup. |
30 const char kNaClGdbScript[] = "nacl-gdb-script"; | 30 const char kNaClGdbScript[] = "nacl-gdb-script"; |
31 | 31 |
32 // On POSIX only: the contents of this flag are prepended to the nacl-loader | 32 // On POSIX only: the contents of this flag are prepended to the nacl-loader |
33 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". | 33 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". |
34 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; | 34 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; |
35 | 35 |
36 // Causes the process to run as a NativeClient loader. | 36 // Causes the process to run as a NativeClient loader. |
37 const char kNaClLoaderProcess[] = "nacl-loader"; | 37 const char kNaClLoaderProcess[] = "nacl-loader"; |
38 | 38 |
39 // Disables crash throttling for Portable Native Client. | |
40 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling"; | |
Mark Seaborn
2013/11/22 20:41:48
Please put these in the same order as in the heade
| |
41 | |
42 // Disables the installation of Portable Native Client. | |
43 const char kDisablePnaclInstall[] = "disable-pnacl-install"; | |
44 | |
39 } // namespace switches | 45 } // namespace switches |
OLD | NEW |