Index: tools/perf/measurements/thread_times.py |
diff --git a/tools/perf/measurements/thread_times.py b/tools/perf/measurements/thread_times.py |
index fd53c0b5b1e23397af46906ddca0eb9c9b05b238..34d349550d6685649b1d8dc8b4f5534ef76c24c5 100644 |
--- a/tools/perf/measurements/thread_times.py |
+++ b/tools/perf/measurements/thread_times.py |
@@ -25,11 +25,11 @@ class ThreadTimes(page_measurement.PageMeasurement): |
def WillRunActions(self, page, tab): |
self._metric = timeline.ThreadTimesTimelineMetric() |
- self._metric.Start(page, tab) |
if self.options.report_silk_results: |
self._metric.results_to_report = timeline.ReportSilkResults |
if self.options.report_silk_details: |
self._metric.details_to_report = timeline.ReportSilkDetails |
+ self._metric.Start(page, tab) |
def DidRunAction(self, page, tab, action): |
self._metric.AddActionToIncludeInMetric(action) |