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

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

Issue 341483005: Timeline: remove redundant header from frame statistics (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased, fixed test Created 6 years, 6 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
Index: Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js
index 6cdb8c6821e8cc11f9d6fa21a6378d85369a4347..de4316d4a4a579d85aa9f7b5b796e8295d59d1a5 100644
--- a/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -989,7 +989,7 @@ WebInspector.TimelinePanel.prototype = {
var event = this._tracingTimelineModel.traceEventFrom(record);
this._buildSelectionDetailsForTraceEvent(event);
} else {
- WebInspector.TimelineUIUtils.generatePopupContent(record, this._model, this._detailsLinkifier, this.showInDetails.bind(this, record.title()), this._model.loadedFromFile());
+ WebInspector.TimelineUIUtils.generateDetailsContent(record, this._model, this._detailsLinkifier, this.showInDetails.bind(this, record.title()), this._model.loadedFromFile());
}
break;
case WebInspector.TimelineSelection.Type.TraceEvent:
@@ -1003,7 +1003,7 @@ WebInspector.TimelinePanel.prototype = {
layersView.showLayerTree(frame.layerTree);
this._detailsView.setChildView(WebInspector.UIString("Frame Layers"), layersView);
} else {
- this.showInDetails(WebInspector.UIString("Frame Statistics"), WebInspector.TimelineUIUtils.generatePopupContentForFrame(this._lazyFrameModel, frame));
+ this.showInDetails(WebInspector.UIString("Frame Statistics"), WebInspector.TimelineUIUtils.generateDetailsContentForFrame(this._lazyFrameModel, frame));
}
break;
}
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineFrameModel.js ('k') | Source/devtools/front_end/timeline/TimelineUIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698