| Index: base/trace_event/heap_profiler_allocation_context_tracker.h
|
| diff --git a/base/trace_event/heap_profiler_allocation_context_tracker.h b/base/trace_event/heap_profiler_allocation_context_tracker.h
|
| index 4f2a8c95026ac611350763ea4df674f8bd60c743..e6cce3a2c8cc61a39c42b00a643eaa6a1fe3307d 100644
|
| --- a/base/trace_event/heap_profiler_allocation_context_tracker.h
|
| +++ b/base/trace_event/heap_profiler_allocation_context_tracker.h
|
| @@ -23,10 +23,11 @@ namespace trace_event {
|
| // details.
|
| class BASE_EXPORT AllocationContextTracker {
|
| public:
|
| - enum class CaptureMode: int32_t {
|
| - DISABLED, // Don't capture anything
|
| - PSEUDO_STACK, // GetContextSnapshot() returns pseudo stack trace
|
| - NATIVE_STACK // GetContextSnapshot() returns native (real) stack trace
|
| + enum class CaptureMode : int32_t {
|
| + DISABLED, // Don't capture anything
|
| + PSEUDO_STACK, // GetContextSnapshot() returns pseudo stack trace
|
| + NATIVE_STACK, // GetContextSnapshot() returns native (real) stack trace
|
| + BACKGROUND, // GetContextSnapshot() returns thread names and task contexts.
|
| };
|
|
|
| // Stack frame constructed from trace events in codebase.
|
|
|