Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 840 const char kMetricsRecordingOnly[] = "metrics-recording-only"; | 840 const char kMetricsRecordingOnly[] = "metrics-recording-only"; |
| 841 | 841 |
| 842 // Enables multiprofile Chrome. | 842 // Enables multiprofile Chrome. |
| 843 const char kMultiProfiles[] = "multi-profiles"; | 843 const char kMultiProfiles[] = "multi-profiles"; |
| 844 | 844 |
| 845 // Native Client GDB debugger for loader. It needs switches calculated | 845 // Native Client GDB debugger for loader. It needs switches calculated |
| 846 // at run time in order to work correctly. That's why NaClLoadCmdPrefix | 846 // at run time in order to work correctly. That's why NaClLoadCmdPrefix |
| 847 // flag can't be used. | 847 // flag can't be used. |
| 848 const char kNaClGdb[] = "nacl-gdb"; | 848 const char kNaClGdb[] = "nacl-gdb"; |
| 849 | 849 |
| 850 // GDB script that will be executed by the nacl-gdb debugger at startup. | |
|
Mark Seaborn
2012/05/29 18:19:44
Nit: maybe "GDB script to pass to the nacl-gdb deb
halyavin
2012/05/30 08:12:05
Done.
| |
| 851 const char kNaClGdbScript[] = "nacl-gdb-script"; | |
| 852 | |
| 850 // On POSIX only: the contents of this flag are prepended to the nacl-loader | 853 // On POSIX only: the contents of this flag are prepended to the nacl-loader |
| 851 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". | 854 // command line. Useful values might be "valgrind" or "xterm -e gdb --args". |
| 852 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; | 855 const char kNaClLoaderCmdPrefix[] = "nacl-loader-cmd-prefix"; |
| 853 | 856 |
| 854 // Sets the base logging level for the net log. Log 0 logs the most data. | 857 // Sets the base logging level for the net log. Log 0 logs the most data. |
| 855 // Intended primarily for use with --log-net-log. | 858 // Intended primarily for use with --log-net-log. |
| 856 const char kNetLogLevel[] = "net-log-level"; | 859 const char kNetLogLevel[] = "net-log-level"; |
| 857 | 860 |
| 858 // Disables the default browser check. Useful for UI/browser tests where we | 861 // Disables the default browser check. Useful for UI/browser tests where we |
| 859 // want to avoid having the default browser info-bar displayed. | 862 // want to avoid having the default browser info-bar displayed. |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1447 | 1450 |
| 1448 // ----------------------------------------------------------------------------- | 1451 // ----------------------------------------------------------------------------- |
| 1449 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1452 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1450 // | 1453 // |
| 1451 // You were going to just dump your switches here, weren't you? Instead, please | 1454 // You were going to just dump your switches here, weren't you? Instead, please |
| 1452 // put them in alphabetical order above, or in order inside the appropriate | 1455 // put them in alphabetical order above, or in order inside the appropriate |
| 1453 // ifdef at the bottom. The order should match the header. | 1456 // ifdef at the bottom. The order should match the header. |
| 1454 // ----------------------------------------------------------------------------- | 1457 // ----------------------------------------------------------------------------- |
| 1455 | 1458 |
| 1456 } // namespace switches | 1459 } // namespace switches |
| OLD | NEW |