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

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

Issue 1303883002: DevTools: Move timeline tree view out of experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/main/Main.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/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,
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698