| 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 495ef5436a7ea3725d5a9ceb78a9826e9ffcb5a4..b5b15fdbaccc67c638ca57d5a808fe29a38281f4 100644
|
| --- a/Source/devtools/front_end/timeline/TimelinePanel.js
|
| +++ b/Source/devtools/front_end/timeline/TimelinePanel.js
|
| @@ -1348,10 +1348,8 @@ WebInspector.TimelineDetailsView = function(timelineModel)
|
| this.appendTab(WebInspector.TimelinePanel.DetailsTab.Details, WebInspector.UIString("Summary"), this._defaultDetailsWidget);
|
| this.setPreferredTab(WebInspector.TimelinePanel.DetailsTab.Details);
|
|
|
| - if (Runtime.experiments.isEnabled("timelineTreeView")) {
|
| - this._heavyTreeView = new WebInspector.TimelineTreeView(timelineModel);
|
| - this.appendTab(WebInspector.TimelinePanel.DetailsTab.BottomUpTree, WebInspector.UIString("Aggregated Details"), this._heavyTreeView);
|
| - }
|
| + this._heavyTreeView = new WebInspector.TimelineTreeView(timelineModel);
|
| + this.appendTab(WebInspector.TimelinePanel.DetailsTab.BottomUpTree, WebInspector.UIString("Aggregated Details"), this._heavyTreeView);
|
|
|
| this._staticTabs = new Set([
|
| WebInspector.TimelinePanel.DetailsTab.Details,
|
|
|