| Index: base/trace_event/heap_profiler_allocation_context_tracker_unittest.cc
|
| diff --git a/base/trace_event/heap_profiler_allocation_context_tracker_unittest.cc b/base/trace_event/heap_profiler_allocation_context_tracker_unittest.cc
|
| index 577f50043dae4100cd353123438425d9e37ebe6a..6317886b0d7fb59c48f8f8e80471258cfce75f2a 100644
|
| --- a/base/trace_event/heap_profiler_allocation_context_tracker_unittest.cc
|
| +++ b/base/trace_event/heap_profiler_allocation_context_tracker_unittest.cc
|
| @@ -34,7 +34,9 @@ const char kFilteringTraceConfig[] =
|
| " \"excluded_categories\": [],"
|
| " \"filter_args\": {},"
|
| " \"filter_predicate\": \"heap_profiler_predicate\","
|
| - " \"included_categories\": [\"*\"]"
|
| + " \"included_categories\": ["
|
| + " \"*\","
|
| + " \"" TRACE_DISABLED_BY_DEFAULT("Testing") "\"]"
|
| " }"
|
| " ]"
|
| "}";
|
| @@ -122,6 +124,7 @@ TEST_F(AllocationContextTrackerTest, PseudoStackScopedTrace) {
|
| }
|
|
|
| {
|
| + TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("NotTesting"), kDonut);
|
| TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("Testing"), kCupcake);
|
| StackFrame frame_cc[] = {t, c, c};
|
| AssertBacktraceEquals(frame_cc);
|
|
|