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

Unified Diff: Source/devtools/front_end/timeline/TimelineMemoryOverview.js

Issue 1178563002: DevTools: Refactor network panel overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test. Created 5 years, 6 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/timeline/TimelineMemoryOverview.js
diff --git a/Source/devtools/front_end/timeline/TimelineMemoryOverview.js b/Source/devtools/front_end/timeline/TimelineMemoryOverview.js
index b0776b7ac30cc7005da97608d5ab5886146d8ad6..6786b93f43b09148378825308bedcbd1719ecc46 100644
--- a/Source/devtools/front_end/timeline/TimelineMemoryOverview.js
+++ b/Source/devtools/front_end/timeline/TimelineMemoryOverview.js
@@ -35,8 +35,9 @@
*/
WebInspector.TimelineMemoryOverview = function(model)
{
- WebInspector.TimelineOverviewBase.call(this, model);
+ WebInspector.TimelineOverviewBase.call(this);
this.element.id = "timeline-overview-memory";
+ this._model = model;
this._heapSizeLabel = this.element.createChild("div", "memory-graph-label");
}

Powered by Google App Engine
This is Rietveld 408576698