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

Side by Side Diff: components/nacl/common/nacl_switches.cc

Issue 75463005: Move more files from chrome/browser/nacl_host/ to components/nacl/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
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 #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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698