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

Unified Diff: Source/devtools/front_end/FlameChart.js

Issue 205563007: CPUProfiler: convert Flame Chart into Icicle Chart (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: the function was moved to Script.js Created 6 years, 9 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/FlameChart.js
diff --git a/Source/devtools/front_end/FlameChart.js b/Source/devtools/front_end/FlameChart.js
index a66675dcdb89f8b53fe5b6be2bb6f33d2ca8a630..92adebb7f1d69f0b4234f3a39fad3a8dcd0a4837 100644
--- a/Source/devtools/front_end/FlameChart.js
+++ b/Source/devtools/front_end/FlameChart.js
@@ -55,7 +55,7 @@ WebInspector.FlameChart = function(dataProvider)
this._overviewPane = new WebInspector.FlameChart.OverviewPane(dataProvider);
this._overviewPane.show(this.element);
- this._mainPane = new WebInspector.FlameChart.MainPane(dataProvider, this._overviewPane, false, false);
+ this._mainPane = new WebInspector.FlameChart.MainPane(dataProvider, this._overviewPane, true, false);
this._mainPane.show(this.element);
this._mainPane.addEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onEntrySelected, this);
this._overviewPane._overviewGrid.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);

Powered by Google App Engine
This is Rietveld 408576698