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

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

Issue 668683002: DevTools: remove style reuse from flamechart clients, prepare it to become a component. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/HeapSnapshotView.js
diff --git a/Source/devtools/front_end/profiler/HeapSnapshotView.js b/Source/devtools/front_end/profiler/HeapSnapshotView.js
index a2b97119cbf09b5ea29cfb88711040b3322f36ac..294369771400318c56da4e777589987dd1c058bc 100644
--- a/Source/devtools/front_end/profiler/HeapSnapshotView.js
+++ b/Source/devtools/front_end/profiler/HeapSnapshotView.js
@@ -1746,11 +1746,10 @@ WebInspector.SaveSnapshotOutputStreamDelegate.prototype = {
WebInspector.HeapTrackingOverviewGrid = function(heapProfileHeader)
{
WebInspector.VBox.call(this);
- this.registerRequiredCSS("flameChart.css");
this.element.id = "heap-recording-view";
this.element.classList.add("heap-tracking-overview");
- this._overviewContainer = this.element.createChild("div", "overview-container");
+ this._overviewContainer = this.element.createChild("div", "heap-overview-container");
this._overviewGrid = new WebInspector.OverviewGrid("heap-recording");
this._overviewGrid.element.classList.add("fill");
« no previous file with comments | « Source/devtools/front_end/profiler/CPUProfileFlameChart.js ('k') | Source/devtools/front_end/profilesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698