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 #include "build/build_config.h" | 6 #include "build/build_config.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Disables the crash reporting. | 10 // Disables the crash reporting. |
11 const char kDisableBreakpad[] = "disable-breakpad"; | 11 const char kDisableBreakpad[] = "disable-breakpad"; |
12 | 12 |
13 // Indicates that crash reporting should be enabled. On platforms where helper | 13 // Indicates that crash reporting should be enabled. On platforms where helper |
14 // processes cannot access to files needed to make this decision, this flag is | 14 // processes cannot access to files needed to make this decision, this flag is |
15 // generated internally. | 15 // generated internally. |
16 const char kEnableCrashReporter[] = "enable-crash-reporter"; | 16 const char kEnableCrashReporter[] = "enable-crash-reporter"; |
17 | 17 |
18 // Makes memory allocators keep track of their allocations and context, so a | 18 // Makes memory allocators keep track of their allocations and context, so a |
19 // detailed breakdown of memory usage can be presented in chrome://tracing when | 19 // detailed breakdown of memory usage can be presented in chrome://tracing when |
20 // the memory-infra category is enabled. | 20 // the memory-infra category is enabled. |
21 const char kEnableHeapProfiling[] = "enable-heap-profiling"; | 21 const char kEnableHeapProfiling[] = "enable-heap-profiling"; |
22 | 22 |
23 // Report native (walk the stack) allocation traces. By default pseudo stacks | |
24 // derived from trace events are reported. | |
25 const char kEnableHeapProfilingModeNative[] = "native"; | |
26 | |
27 // Generates full memory crash dump. | 23 // Generates full memory crash dump. |
28 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; | 24 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; |
29 | 25 |
30 // Force low-end device mode when set. | 26 // Force low-end device mode when set. |
31 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode"; | 27 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode"; |
32 | 28 |
33 // Force disabling of low-end device mode when set. | 29 // Force disabling of low-end device mode when set. |
34 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode"; | 30 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode"; |
35 | 31 |
36 // This option can be used to force field trials when testing changes locally. | 32 // This option can be used to force field trials when testing changes locally. |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 #endif | 91 #endif |
96 | 92 |
97 #if defined(OS_POSIX) | 93 #if defined(OS_POSIX) |
98 // Used for turning on Breakpad crash reporting in a debug environment where | 94 // Used for turning on Breakpad crash reporting in a debug environment where |
99 // crash reporting is typically compiled but disabled. | 95 // crash reporting is typically compiled but disabled. |
100 const char kEnableCrashReporterForTesting[] = | 96 const char kEnableCrashReporterForTesting[] = |
101 "enable-crash-reporter-for-testing"; | 97 "enable-crash-reporter-for-testing"; |
102 #endif | 98 #endif |
103 | 99 |
104 } // namespace switches | 100 } // namespace switches |
OLD | NEW |