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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js

Issue 1933373002: DevTools: Move network pane on timeline out of experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatting Created 4 years, 8 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: third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
index 9b37d4433f42859745f5efb10a10c25f9ac7208c..e86a40df52aff4a8f6c00962ead6aea85c4647f3 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineFlameChart.js
@@ -1306,13 +1306,9 @@ WebInspector.TimelineFlameChartView = function(delegate, timelineModel, frameMod
this._networkDataProvider = new WebInspector.TimelineFlameChartNetworkDataProvider(this._model);
this._networkView = new WebInspector.FlameChart(this._networkDataProvider, this);
- if (Runtime.experiments.isEnabled("networkRequestsOnTimeline")) {
- this._splitWidget.setMainWidget(this._mainView);
- this._splitWidget.setSidebarWidget(this._networkView);
- this._splitWidget.show(this.element);
- } else {
- this._mainView.show(this.element);
- }
+ this._splitWidget.setMainWidget(this._mainView);
+ this._splitWidget.setSidebarWidget(this._networkView);
+ this._splitWidget.show(this.element);
this._onMainEntrySelected = this._onEntrySelected.bind(this, this._dataProvider);
this._onNetworkEntrySelected = this._onEntrySelected.bind(this, this._networkDataProvider);

Powered by Google App Engine
This is Rietveld 408576698