Index: tools/telemetry/telemetry/core/timeline/process.py |
diff --git a/tools/telemetry/telemetry/core/timeline/process.py b/tools/telemetry/telemetry/core/timeline/process.py |
index 1b65d66f4164141d88688230b0becef556d300ad..d249fff7f7c13beeb6f255e2c88a2b1af07d5698 100644 |
--- a/tools/telemetry/telemetry/core/timeline/process.py |
+++ b/tools/telemetry/telemetry/core/timeline/process.py |
@@ -61,9 +61,9 @@ class Process(event_container.TimelineEventContainer): |
self._counters[ctr.full_name] = ctr |
return ctr |
- def AutoCloseOpenSlices(self, max_timestamp): |
+ def AutoCloseOpenSlices(self, max_timestamp, max_thread_timestamp): |
for thread in self._threads.itervalues(): |
- thread.AutoCloseOpenSlices(max_timestamp) |
+ thread.AutoCloseOpenSlices(max_timestamp, max_thread_timestamp) |
def FinalizeImport(self): |
for thread in self._threads.itervalues(): |