Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: base/base_switches.cc

Issue 189603007: Let DCHECK in non-official-release build be opt-in with dcheck_always_on=1 only (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/base_switches.h ('k') | base/i18n/streaming_utf8_validator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 // Indicates that crash reporting should be enabled. On platforms where helper 18 // Indicates that crash reporting should be enabled. On platforms where helper
19 // processes cannot access to files needed to make this decision, this flag is 19 // processes cannot access to files needed to make this decision, this flag is
20 // generated internally. 20 // generated internally.
21 const char kEnableCrashReporter[] = "enable-crash-reporter"; 21 const char kEnableCrashReporter[] = "enable-crash-reporter";
22 22
23 // Enable DCHECKs in release mode.
24 const char kEnableDCHECK[] = "enable-dcheck";
25
26 // Generates full memory crash dump. 23 // Generates full memory crash dump.
27 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; 24 const char kFullMemoryCrashReport[] = "full-memory-crash-report";
28 25
29 // Suppresses all error dialogs when present. 26 // Suppresses all error dialogs when present.
30 const char kNoErrorDialogs[] = "noerrdialogs"; 27 const char kNoErrorDialogs[] = "noerrdialogs";
31 28
32 // When running certain tests that spawn child processes, this switch indicates 29 // When running certain tests that spawn child processes, this switch indicates
33 // to the test framework that the current process is a child process. 30 // to the test framework that the current process is a child process.
34 const char kTestChildProcess[] = "test-child-process"; 31 const char kTestChildProcess[] = "test-child-process";
35 32
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 68
72 #if defined(OS_ANDROID) 69 #if defined(OS_ANDROID)
73 // Overrides low-end device detection, disabling low-end device optimizations. 70 // Overrides low-end device detection, disabling low-end device optimizations.
74 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode"; 71 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode";
75 72
76 // Overrides low-end device detection, enabling low-end device optimizations. 73 // Overrides low-end device detection, enabling low-end device optimizations.
77 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode"; 74 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode";
78 #endif 75 #endif
79 76
80 } // namespace switches 77 } // namespace switches
OLDNEW
« no previous file with comments | « base/base_switches.h ('k') | base/i18n/streaming_utf8_validator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698