Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(923)

Unified Diff: Source/devtools/front_end/timeline/TimelineView.js

Issue 397823003: DevTools: Support multiple target in TimelineModelImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix tests Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698