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 "base/base_switches.h" | |
6 | |
7 namespace switches { | 5 namespace switches { |
8 | 6 |
9 // If the program includes base/debug/debug_on_start_win.h, the process will | 7 // 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 | 8 // (on Windows only) start the JIT system-registered debugger on itself and |
11 // will wait for 60 seconds for the debugger to attach to itself. Then a break | 9 // will wait for 60 seconds for the debugger to attach to itself. Then a break |
12 // point will be hit. | 10 // point will be hit. |
13 const char kDebugOnStart[] = "debug-on-start"; | 11 const char kDebugOnStart[] = "debug-on-start"; |
14 | 12 |
15 // Disables the crash reporting. | 13 // Disables the crash reporting. |
16 const char kDisableBreakpad[] = "disable-breakpad"; | 14 const char kDisableBreakpad[] = "disable-breakpad"; |
(...skipping 27 matching lines...) Expand all Loading... |
44 // Any pattern containing a forward or backward slash will be tested | 42 // Any pattern containing a forward or backward slash will be tested |
45 // against the whole pathname and not just the module. E.g., | 43 // against the whole pathname and not just the module. E.g., |
46 // "*/foo/bar/*=2" would change the logging level for all code in | 44 // "*/foo/bar/*=2" would change the logging level for all code in |
47 // source files under a "foo/bar" directory. | 45 // source files under a "foo/bar" directory. |
48 const char kVModule[] = "vmodule"; | 46 const char kVModule[] = "vmodule"; |
49 | 47 |
50 // Will wait for 60 seconds for a debugger to come to attach to the process. | 48 // Will wait for 60 seconds for a debugger to come to attach to the process. |
51 const char kWaitForDebugger[] = "wait-for-debugger"; | 49 const char kWaitForDebugger[] = "wait-for-debugger"; |
52 | 50 |
53 } // namespace switches | 51 } // namespace switches |
OLD | NEW |