Index: Source/devtools/front_end/timeline/TimelineView.js |
diff --git a/Source/devtools/front_end/timeline/TimelineView.js b/Source/devtools/front_end/timeline/TimelineView.js |
index 8bf18b9fa06a6d69924dbaa155e810ea69834288..303ec4df5958edadc1f98b4ed49d6ba7408b8eee 100644 |
--- a/Source/devtools/front_end/timeline/TimelineView.js |
+++ b/Source/devtools/front_end/timeline/TimelineView.js |
@@ -582,7 +582,7 @@ WebInspector.TimelineView.prototype = { |
this._graphRowsElement.appendChild(graphRowElement); |
} |
- listRowElement.row.update(record, visibleTop, this._model.loadedFromFile(), this._uiUtils); |
+ listRowElement.row.update(record, visibleTop, this._uiUtils); |
graphRowElement.row.update(record, this._calculator, this._expandOffset, i, this._uiUtils); |
if (this._lastSelectedRecord === record) { |
listRowElement.row.renderAsSelected(true); |
@@ -1055,10 +1055,9 @@ WebInspector.TimelineRecordListRow.prototype = { |
/** |
* @param {!WebInspector.TimelinePresentationModel.Record} presentationRecord |
* @param {number} offset |
- * @param {boolean} loadedFromFile |
* @param {!WebInspector.TimelineUIUtils} uiUtils |
*/ |
- update: function(presentationRecord, offset, loadedFromFile, uiUtils) |
+ update: function(presentationRecord, offset, uiUtils) |
{ |
this._record = presentationRecord; |
var record = presentationRecord.record(); |