OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/base_switches.h" | 5 #include "base/base_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // If the program includes chrome/common/debug_on_start.h, the process will | 9 // If the program includes chrome/common/debug_on_start.h, the process will |
10 // start the JIT system-registered debugger on itself and will wait for 60 | 10 // start the JIT system-registered debugger on itself and will wait for 60 |
(...skipping 13 matching lines...) Expand all Loading... |
24 const char kNoErrorDialogs[] = "noerrdialogs"; | 24 const char kNoErrorDialogs[] = "noerrdialogs"; |
25 | 25 |
26 // Disable win_util::MessageBox. This is useful when running as part of | 26 // Disable win_util::MessageBox. This is useful when running as part of |
27 // scripts that do not have a user interface. | 27 // scripts that do not have a user interface. |
28 const char kNoMessageBox[] = "no-message-box"; | 28 const char kNoMessageBox[] = "no-message-box"; |
29 | 29 |
30 // When running certain tests that spawn child processes, this switch indicates | 30 // When running certain tests that spawn child processes, this switch indicates |
31 // to the test framework that the current process is a child process. | 31 // to the test framework that the current process is a child process. |
32 const char kTestChildProcess[] = "test-child-process"; | 32 const char kTestChildProcess[] = "test-child-process"; |
33 | 33 |
| 34 // Gives the default maximal active V-logging level; 0 is the default. |
| 35 // Normally positive values are used for V-logging levels. |
| 36 const char kV[] = "v"; |
| 37 |
| 38 // Gives the per-module maximal V-logging levels to override the value |
| 39 // given by --v. E.g. "my_module=2,foo*=3" would change the logging |
| 40 // level for all code in source files "my_module.*" and "foo*.*" |
| 41 // ("-inl" suffixes are also disregarded for this matching). |
| 42 const char kVModule[] = "vmodule"; |
| 43 |
34 // Will wait for 60 seconds for a debugger to come to attach to the process. | 44 // Will wait for 60 seconds for a debugger to come to attach to the process. |
35 const char kWaitForDebugger[] = "wait-for-debugger"; | 45 const char kWaitForDebugger[] = "wait-for-debugger"; |
36 | 46 |
37 } // namespace switches | 47 } // namespace switches |
OLD | NEW |