| Index: Source/devtools/front_end/TimelineView.js
|
| diff --git a/Source/devtools/front_end/TimelineView.js b/Source/devtools/front_end/TimelineView.js
|
| index 2c53abd9bba1bd943a550f1254bc6a3efd6923d8..70da6c77c09e812a1ccb49c9c134245bb3978222 100644
|
| --- a/Source/devtools/front_end/TimelineView.js
|
| +++ b/Source/devtools/front_end/TimelineView.js
|
| @@ -539,7 +539,7 @@ WebInspector.TimelineView.prototype = {
|
| this._graphRowsElement.appendChild(graphRowElement);
|
| }
|
|
|
| - listRowElement.row.update(record, visibleTop);
|
| + listRowElement.row.update(record, visibleTop, this._model.loadedFromFile());
|
| graphRowElement.row.update(record, this._calculator, this._expandOffset, i);
|
| if (this._lastSelectedRecord === record) {
|
| listRowElement.row.renderAsSelected(true);
|
| @@ -1005,8 +1005,9 @@ WebInspector.TimelineRecordListRow.prototype = {
|
| /**
|
| * @param {!WebInspector.TimelinePresentationModel.Record} presentationRecord
|
| * @param {number} offset
|
| + * @param {boolean} loadedFromFile
|
| */
|
| - update: function(presentationRecord, offset)
|
| + update: function(presentationRecord, offset, loadedFromFile)
|
| {
|
| this._record = presentationRecord;
|
| var record = presentationRecord.record();
|
| @@ -1032,7 +1033,7 @@ WebInspector.TimelineRecordListRow.prototype = {
|
| if (presentationRecord.coalesced()) {
|
| this._dataElement.createTextChild(WebInspector.UIString("× %d", presentationRecord.presentationChildren().length));
|
| } else {
|
| - var detailsNode = WebInspector.TimelineUIUtils.buildDetailsNode(record, this._linkifier);
|
| + var detailsNode = WebInspector.TimelineUIUtils.buildDetailsNode(record, this._linkifier, loadedFromFile);
|
| if (detailsNode) {
|
| this._dataElement.appendChild(document.createTextNode("("));
|
| this._dataElement.appendChild(detailsNode);
|
|
|