| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 // Sets the default IP address (interface) for the stub (normally 127.0.0.1). | 771 // Sets the default IP address (interface) for the stub (normally 127.0.0.1). |
| 772 const char kNaClDebugIP[] = "nacl-debug-ip"; | 772 const char kNaClDebugIP[] = "nacl-debug-ip"; |
| 773 | 773 |
| 774 // Sets the default port range for debugging. | 774 // Sets the default port range for debugging. |
| 775 const char kNaClDebugPorts[] = "nacl-debug-ports"; | 775 const char kNaClDebugPorts[] = "nacl-debug-ports"; |
| 776 | 776 |
| 777 // On POSIX only: the contents of this flag are prepended to the nacl-loader | 777 // On POSIX only: the contents of this flag are prepended to the nacl-loader |
| 778 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". | 778 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". |
| 779 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; | 779 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; |
| 780 | 780 |
| 781 // Causes the Native Client process to display a dialog on launch. | |
| 782 const char kNaClStartupDialog[] = "nacl-startup-dialog"; | |
| 783 | |
| 784 // Sets the base logging level for the net log. Log 0 logs the most data. | 781 // Sets the base logging level for the net log. Log 0 logs the most data. |
| 785 // Intended primarily for use with --log-net-log. | 782 // Intended primarily for use with --log-net-log. |
| 786 const char kNetLogLevel[] = "net-log-level"; | 783 const char kNetLogLevel[] = "net-log-level"; |
| 787 | 784 |
| 788 // Disables the latest incarnation of the new tab page. Only intended for | 785 // Disables the latest incarnation of the new tab page. Only intended for |
| 789 // testing use. For TOUCH_UI, the meaning is inverted (i.e. default is to | 786 // testing use. For TOUCH_UI, the meaning is inverted (i.e. default is to |
| 790 // disable NTP4, and passing the flag will enable it). | 787 // disable NTP4, and passing the flag will enable it). |
| 791 const char kNewTabPage[] = "new-tab-page"; | 788 const char kNewTabPage[] = "new-tab-page"; |
| 792 | 789 |
| 793 // Disables the default browser check. Useful for UI/browser tests where we | 790 // Disables the default browser check. Useful for UI/browser tests where we |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1297 | 1294 |
| 1298 // ----------------------------------------------------------------------------- | 1295 // ----------------------------------------------------------------------------- |
| 1299 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1296 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1300 // | 1297 // |
| 1301 // You were going to just dump your switches here, weren't you? Instead, please | 1298 // You were going to just dump your switches here, weren't you? Instead, please |
| 1302 // put them in alphabetical order above, or in order inside the appropriate | 1299 // put them in alphabetical order above, or in order inside the appropriate |
| 1303 // ifdef at the bottom. The order should match the header. | 1300 // ifdef at the bottom. The order should match the header. |
| 1304 // ----------------------------------------------------------------------------- | 1301 // ----------------------------------------------------------------------------- |
| 1305 | 1302 |
| 1306 } // namespace switches | 1303 } // namespace switches |
| OLD | NEW |