summaryrefslogtreecommitdiff
path: root/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html')
-rw-r--r--chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html b/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html
index 24903ae3133..eeae99d836b 100644
--- a/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html
+++ b/chromium/third_party/catapult/tracing/tracing/extras/importer/linux_perf/irq_parser.html
@@ -87,7 +87,7 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
if (thread.lastEntryTs !== undefined) {
var duration = ts - thread.lastEntryTs;
- var slice = new tr.model.Slice(
+ var slice = new tr.model.ThreadSlice(
'',
'IRQ (' + thread.irqName + ')',
ColorScheme.getColorIdForGeneralPurposeString(event[1]),
@@ -129,7 +129,7 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
if (thread.lastEntryTs !== undefined) {
var duration = ts - thread.lastEntryTs;
- var slice = new tr.model.Slice(
+ var slice = new tr.model.ThreadSlice(
'', action,
ColorScheme.getColorIdForGeneralPurposeString(event[1]),
thread.lastEntryTs, { vec: vec },
@@ -161,7 +161,7 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
if (thread.lastEntryTs !== undefined) {
var duration = ts - thread.lastEntryTs;
- var slice = new tr.model.Slice(
+ var slice = new tr.model.ThreadSlice(
'',
'IPI (' + ipiName + ')',
ColorScheme.getColorIdForGeneralPurposeString(ipiName),