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

Side by Side Diff: base/base_switches.cc

Issue 1839503002: [tracing] Add native allocation tracing mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add type to StackFrame; format thread name Created 4 years, 8 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
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 #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 traces
Primiano Tucci (use gerrit) 2016/04/07 15:51:56 s/pseudo traces/pseudo stacks derived from trace e
Dmitry Skiba 2016/04/12 18:22:10 Done.
24 // are reported.
25 const char kEnableHeapProfilingModeNative[] = "native";
Primiano Tucci (use gerrit) 2016/04/07 15:51:56 Not sure if this constant (which is the value part
26
23 // Generates full memory crash dump. 27 // Generates full memory crash dump.
24 const char kFullMemoryCrashReport[] = "full-memory-crash-report"; 28 const char kFullMemoryCrashReport[] = "full-memory-crash-report";
25 29
26 // Force low-end device mode when set. 30 // Force low-end device mode when set.
27 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode"; 31 const char kEnableLowEndDeviceMode[] = "enable-low-end-device-mode";
28 32
29 // Force disabling of low-end device mode when set. 33 // Force disabling of low-end device mode when set.
30 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode"; 34 const char kDisableLowEndDeviceMode[] = "disable-low-end-device-mode";
31 35
32 // This option can be used to force field trials when testing changes locally. 36 // 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
91 #endif 95 #endif
92 96
93 #if defined(OS_POSIX) 97 #if defined(OS_POSIX)
94 // Used for turning on Breakpad crash reporting in a debug environment where 98 // Used for turning on Breakpad crash reporting in a debug environment where
95 // crash reporting is typically compiled but disabled. 99 // crash reporting is typically compiled but disabled.
96 const char kEnableCrashReporterForTesting[] = 100 const char kEnableCrashReporterForTesting[] =
97 "enable-crash-reporter-for-testing"; 101 "enable-crash-reporter-for-testing";
98 #endif 102 #endif
99 103
100 } // namespace switches 104 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698