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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js

Issue 2353033004: [DevTools] Expose left and right toolbar in TabbedPane. (Closed)
Patch Set: review comment Created 4 years, 3 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/profiler/HeapSnapshotView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
index 141a175ec41af37eb0fa9ac7364cb9f993b78798..7ce8d2626c6213bfa9ea1320cb7e842d47ac1790 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
@@ -86,7 +86,6 @@ WebInspector.HeapSnapshotView = function(dataDisplayDelegate, profile)
this._allocationStackView.setMinimumSize(50, 25);
this._tabbedPane = new WebInspector.TabbedPane();
- this._tabbedPane.headerElement().classList.add("heap-object-details-header");
}
this._retainmentDataGrid = new WebInspector.HeapSnapshotRetainmentDataGrid(this);
@@ -97,7 +96,6 @@ WebInspector.HeapSnapshotView = function(dataDisplayDelegate, profile)
var splitWidgetResizer;
if (this._allocationStackView) {
this._tabbedPane = new WebInspector.TabbedPane();
- this._tabbedPane.headerElement().classList.add("heap-object-details-header");
this._tabbedPane.appendTab("retainers", WebInspector.UIString("Retainers"), this._retainmentWidget);
this._tabbedPane.appendTab("allocation-stack", WebInspector.UIString("Allocation stack"), this._allocationStackView);

Powered by Google App Engine
This is Rietveld 408576698