Index: Source/devtools/front_end/timeline/TimelineFlameChart.js |
diff --git a/Source/devtools/front_end/timeline/TimelineFlameChart.js b/Source/devtools/front_end/timeline/TimelineFlameChart.js |
index 4169dd815ab90a3b2c185f89ed8ecef8ddb5b900..97f697f505fc482d2340a980bbaa0057d7d23a90 100644 |
--- a/Source/devtools/front_end/timeline/TimelineFlameChart.js |
+++ b/Source/devtools/front_end/timeline/TimelineFlameChart.js |
@@ -90,7 +90,8 @@ WebInspector.TimelineFlameChartDataProvider.prototype = { |
else if (record === this._gpuThreadRecord) |
return WebInspector.UIString("GPU"); |
var details = WebInspector.TimelineUIUtilsImpl.buildDetailsNode(record, this._linkifier, this._model.loadedFromFile()); |
- return details ? WebInspector.UIString("%s (%s)", record.title(), details.textContent) : record.title(); |
+ var title = WebInspector.TimelineUIUtilsImpl.recordTitle(record); |
+ return details ? WebInspector.UIString("%s (%s)", title, details.textContent) : title; |
}, |
/** |