| Index: Source/devtools/front_end/TimelineFlameChart.js
|
| diff --git a/Source/devtools/front_end/TimelineFlameChart.js b/Source/devtools/front_end/TimelineFlameChart.js
|
| index 60567bb4b5c3090f34692343ec0496d232656bca..b007d0f90364b8008f808c6bc56db50c1469a054 100644
|
| --- a/Source/devtools/front_end/TimelineFlameChart.js
|
| +++ b/Source/devtools/front_end/TimelineFlameChart.js
|
| @@ -88,7 +88,7 @@ WebInspector.TimelineFlameChartDataProvider.prototype = {
|
| return WebInspector.UIString("CPU");
|
| else if (record === this._gpuThreadRecord)
|
| return WebInspector.UIString("GPU");
|
| - var details = WebInspector.TimelineUIUtils.buildDetailsNode(record, this._linkifier);
|
| + var details = WebInspector.TimelineUIUtils.buildDetailsNode(record, this._linkifier, this._model.loadedFromFile());
|
| return details ? WebInspector.UIString("%s (%s)", record.title(), details.textContent) : record.title();
|
| },
|
|
|
|
|