Chromium Code Reviews| 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" | 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 |
| 11 // will wait for 60 seconds for the debugger to attach to itself. Then a break | 11 // will wait for 60 seconds for the debugger to attach to itself. Then a break |
| 12 // point will be hit. | 12 // point will be hit. |
| 13 const char kDebugOnStart[] = "debug-on-start"; | 13 const char kDebugOnStart[] = "debug-on-start"; |
| 14 | 14 |
| 15 // Disables the crash reporting. | 15 // Disables the crash reporting. |
| 16 const char kDisableBreakpad[] = "disable-breakpad"; | 16 const char kDisableBreakpad[] = "disable-breakpad"; |
| 17 | 17 |
| 18 // Enable DCHECKs in release mode. | 18 // Enable DCHECKs in release mode. |
| 19 const char kEnableDCHECK[] = "enable-dcheck"; | 19 const char kEnableDCHECK[] = "enable-dcheck"; |
| 20 | 20 |
| 21 // Generates full memory crash dump. | 21 // Generates full memory crash dump. |
| 22 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; | 22 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; |
| 23 | 23 |
| 24 // Load the locale resources from the given path. When running on Mac/Unix the | |
| 25 // path should point to a locale.pak file. | |
| 26 const char kLocalePak[] = "locale_pak"; | |
|
Mark Mentovai
2011/05/24 13:46:03
All of the |= "value"| in this file seem to be ali
| |
| 27 | |
| 24 // Suppresses all error dialogs when present. | 28 // Suppresses all error dialogs when present. |
| 25 const char kNoErrorDialogs[] = "noerrdialogs"; | 29 const char kNoErrorDialogs[] = "noerrdialogs"; |
| 26 | 30 |
| 27 // Disable ui::MessageBox. This is useful when running as part of scripts that | 31 // Disable ui::MessageBox. This is useful when running as part of scripts that |
| 28 // do not have a user interface. | 32 // do not have a user interface. |
| 29 const char kNoMessageBox[] = "no-message-box"; | 33 const char kNoMessageBox[] = "no-message-box"; |
| 30 | 34 |
| 31 // When running certain tests that spawn child processes, this switch indicates | 35 // When running certain tests that spawn child processes, this switch indicates |
| 32 // to the test framework that the current process is a child process. | 36 // to the test framework that the current process is a child process. |
| 33 const char kTestChildProcess[] = "test-child-process"; | 37 const char kTestChildProcess[] = "test-child-process"; |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 44 // Any pattern containing a forward or backward slash will be tested | 48 // Any pattern containing a forward or backward slash will be tested |
| 45 // against the whole pathname and not just the module. E.g., | 49 // against the whole pathname and not just the module. E.g., |
| 46 // "*/foo/bar/*=2" would change the logging level for all code in | 50 // "*/foo/bar/*=2" would change the logging level for all code in |
| 47 // source files under a "foo/bar" directory. | 51 // source files under a "foo/bar" directory. |
| 48 const char kVModule[] = "vmodule"; | 52 const char kVModule[] = "vmodule"; |
| 49 | 53 |
| 50 // Will wait for 60 seconds for a debugger to come to attach to the process. | 54 // Will wait for 60 seconds for a debugger to come to attach to the process. |
| 51 const char kWaitForDebugger[] = "wait-for-debugger"; | 55 const char kWaitForDebugger[] = "wait-for-debugger"; |
| 52 | 56 |
| 53 } // namespace switches | 57 } // namespace switches |
| OLD | NEW |