Index: content/browser/tracing/background_tracing_manager_impl.cc |
diff --git a/content/browser/tracing/background_tracing_manager_impl.cc b/content/browser/tracing/background_tracing_manager_impl.cc |
index fc4be323c8e76b8c764d06fa875253645a5af598..0fa36ef58a13dbc5395bebc2fabed971c7c04b4e 100644 |
--- a/content/browser/tracing/background_tracing_manager_impl.cc |
+++ b/content/browser/tracing/background_tracing_manager_impl.cc |
@@ -329,16 +329,9 @@ |
StartTracing(triggered_rule->category_preset(), |
base::trace_event::RECORD_UNTIL_FULL); |
} else { |
- // Some reactive configs that trigger again while tracing should just |
+ // Reactive configs that trigger again while tracing should just |
// end right away (to not capture multiple navigations, for example). |
- // For others we just want to ignore the repeated trigger. |
- if (triggered_rule->stop_tracing_on_repeated_reactive()) { |
- trace_delay = -1; |
- } else { |
- if (!callback.is_null()) |
- callback.Run(false); |
- return; |
- } |
+ trace_delay = -1; |
} |
} else { |
// In preemptive mode, a trigger starts finalizing a trace if one is |