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 "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 base/debug/debug_on_start_win.h, the process will | 9 // If the program includes base/debug/debug_on_start_win.h, the process will |
10 // (on Windows only) start the JIT system-registered debugger on itself and | 10 // (on Windows only) start the JIT system-registered debugger on itself and |
(...skipping 28 matching lines...) Expand all Loading... |
39 // | 39 // |
40 // Any pattern containing a forward or backward slash will be tested | 40 // Any pattern containing a forward or backward slash will be tested |
41 // against the whole pathname and not just the module. E.g., | 41 // against the whole pathname and not just the module. E.g., |
42 // "*/foo/bar/*=2" would change the logging level for all code in | 42 // "*/foo/bar/*=2" would change the logging level for all code in |
43 // source files under a "foo/bar" directory. | 43 // source files under a "foo/bar" directory. |
44 const char kVModule[] = "vmodule"; | 44 const char kVModule[] = "vmodule"; |
45 | 45 |
46 // Will wait for 60 seconds for a debugger to come to attach to the process. | 46 // Will wait for 60 seconds for a debugger to come to attach to the process. |
47 const char kWaitForDebugger[] = "wait-for-debugger"; | 47 const char kWaitForDebugger[] = "wait-for-debugger"; |
48 | 48 |
| 49 // Sends a pretty-printed version of tracing info to the console. |
| 50 const char kTraceToConsole[] = "trace-to-console"; |
| 51 |
49 } // namespace switches | 52 } // namespace switches |
OLD | NEW |