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

Unified Diff: Source/devtools/front_end/profiler/ProfilesPanel.js

Issue 944343002: DevTools: migrate treeoutline from hasChildren to is/setExpandable(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/profiler/ProfilesPanel.js
diff --git a/Source/devtools/front_end/profiler/ProfilesPanel.js b/Source/devtools/front_end/profiler/ProfilesPanel.js
index 16f4da8604c377b77dff97a70bc93f019c5ed48c..05ef0423a516843e17713cc0a970026609ccf5c3 100644
--- a/Source/devtools/front_end/profiler/ProfilesPanel.js
+++ b/Source/devtools/front_end/profiler/ProfilesPanel.js
@@ -920,7 +920,7 @@ WebInspector.ProfilesPanel.prototype = {
*/
WebInspector.ProfileTypeSidebarSection = function(dataDisplayDelegate, profileType)
{
- WebInspector.SidebarSectionTreeElement.call(this, profileType.treeItemTitle, true);
+ WebInspector.SidebarSectionTreeElement.call(this, profileType.treeItemTitle);
this._dataDisplayDelegate = dataDisplayDelegate;
this._profileTreeElements = [];
this._profileGroups = {};

Powered by Google App Engine
This is Rietveld 408576698