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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 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: 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 7ce8d2626c6213bfa9ea1320cb7e842d47ac1790..1079cc894a2ba5882037cebe788fd7648a90aca0 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
@@ -158,7 +158,7 @@ WebInspector.HeapSnapshotView = function(dataDisplayDelegate, profile)
this._populate();
this._searchThrottler = new WebInspector.Throttler(0);
-}
+};
/**
* @constructor
@@ -167,7 +167,7 @@ WebInspector.HeapSnapshotView = function(dataDisplayDelegate, profile)
WebInspector.HeapSnapshotView.Perspective = function(title)
{
this._title = title;
-}
+};
WebInspector.HeapSnapshotView.Perspective.prototype = {
/**
@@ -218,7 +218,7 @@ WebInspector.HeapSnapshotView.Perspective.prototype = {
{
return false;
}
-}
+};
/**
* @constructor
@@ -227,7 +227,7 @@ WebInspector.HeapSnapshotView.Perspective.prototype = {
WebInspector.HeapSnapshotView.SummaryPerspective = function()
{
WebInspector.HeapSnapshotView.Perspective.call(this, WebInspector.UIString("Summary"));
-}
+};
WebInspector.HeapSnapshotView.SummaryPerspective.prototype = {
/**
@@ -268,7 +268,7 @@ WebInspector.HeapSnapshotView.SummaryPerspective.prototype = {
},
__proto__: WebInspector.HeapSnapshotView.Perspective.prototype
-}
+};
/**
* @constructor
@@ -277,7 +277,7 @@ WebInspector.HeapSnapshotView.SummaryPerspective.prototype = {
WebInspector.HeapSnapshotView.ComparisonPerspective = function()
{
WebInspector.HeapSnapshotView.Perspective.call(this, WebInspector.UIString("Comparison"));
-}
+};
WebInspector.HeapSnapshotView.ComparisonPerspective.prototype = {
/**
@@ -313,7 +313,7 @@ WebInspector.HeapSnapshotView.ComparisonPerspective.prototype = {
},
__proto__: WebInspector.HeapSnapshotView.Perspective.prototype
-}
+};
/**
* @constructor
@@ -322,7 +322,7 @@ WebInspector.HeapSnapshotView.ComparisonPerspective.prototype = {
WebInspector.HeapSnapshotView.ContainmentPerspective = function()
{
WebInspector.HeapSnapshotView.Perspective.call(this, WebInspector.UIString("Containment"));
-}
+};
WebInspector.HeapSnapshotView.ContainmentPerspective.prototype = {
/**
@@ -347,7 +347,7 @@ WebInspector.HeapSnapshotView.ContainmentPerspective.prototype = {
},
__proto__: WebInspector.HeapSnapshotView.Perspective.prototype
-}
+};
/**
* @constructor
@@ -359,7 +359,7 @@ WebInspector.HeapSnapshotView.AllocationPerspective = function()
this._allocationSplitWidget = new WebInspector.SplitWidget(false, true, "heapSnapshotAllocationSplitViewState", 200, 200);
this._allocationSplitWidget.setSidebarWidget(new WebInspector.VBox());
-}
+};
WebInspector.HeapSnapshotView.AllocationPerspective.prototype = {
/**
@@ -411,7 +411,7 @@ WebInspector.HeapSnapshotView.AllocationPerspective.prototype = {
},
__proto__: WebInspector.HeapSnapshotView.Perspective.prototype
-}
+};
/**
* @constructor
@@ -420,7 +420,7 @@ WebInspector.HeapSnapshotView.AllocationPerspective.prototype = {
WebInspector.HeapSnapshotView.StatisticsPerspective = function()
{
WebInspector.HeapSnapshotView.Perspective.call(this, WebInspector.UIString("Statistics"));
-}
+};
WebInspector.HeapSnapshotView.StatisticsPerspective.prototype = {
/**
@@ -443,7 +443,7 @@ WebInspector.HeapSnapshotView.StatisticsPerspective.prototype = {
},
__proto__: WebInspector.HeapSnapshotView.Perspective.prototype
-}
+};
WebInspector.HeapSnapshotView.prototype = {
@@ -1010,7 +1010,7 @@ WebInspector.HeapSnapshotView.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};
/**
* @constructor
@@ -1026,7 +1026,7 @@ WebInspector.HeapSnapshotProfileType = function(id, title)
WebInspector.targetManager.addModelListener(WebInspector.HeapProfilerModel, WebInspector.HeapProfilerModel.Events.ResetProfiles, this._resetProfiles, this);
WebInspector.targetManager.addModelListener(WebInspector.HeapProfilerModel, WebInspector.HeapProfilerModel.Events.AddHeapSnapshotChunk, this._addHeapSnapshotChunk, this);
WebInspector.targetManager.addModelListener(WebInspector.HeapProfilerModel, WebInspector.HeapProfilerModel.Events.ReportHeapSnapshotProgress, this._reportHeapSnapshotProgress, this);
-}
+};
WebInspector.HeapSnapshotProfileType.TypeId = "HEAP";
WebInspector.HeapSnapshotProfileType.SnapshotReceived = "SnapshotReceived";
@@ -1167,7 +1167,7 @@ WebInspector.HeapSnapshotProfileType.prototype = {
},
__proto__: WebInspector.ProfileType.prototype
-}
+};
/**
@@ -1177,7 +1177,7 @@ WebInspector.HeapSnapshotProfileType.prototype = {
WebInspector.TrackingHeapSnapshotProfileType = function()
{
WebInspector.HeapSnapshotProfileType.call(this, WebInspector.TrackingHeapSnapshotProfileType.TypeId, WebInspector.UIString("Record Allocation Timeline"));
-}
+};
WebInspector.TrackingHeapSnapshotProfileType.TypeId = "HEAP-RECORD";
@@ -1201,7 +1201,7 @@ WebInspector.TrackingHeapSnapshotProfileType.Samples = function()
this.max = [];
/** @type {number} */
this.totalTime = 30000;
-}
+};
WebInspector.TrackingHeapSnapshotProfileType.prototype = {
@@ -1395,7 +1395,7 @@ WebInspector.TrackingHeapSnapshotProfileType.prototype = {
},
__proto__: WebInspector.HeapSnapshotProfileType.prototype
-}
+};
/**
* @constructor
@@ -1435,7 +1435,7 @@ WebInspector.HeapProfileHeader = function(target, type, title)
{
this._fulfillLoad = fulfill;
}
-}
+};
WebInspector.HeapProfileHeader.prototype = {
/**
@@ -1644,7 +1644,7 @@ WebInspector.HeapProfileHeader.prototype = {
},
__proto__: WebInspector.ProfileHeader.prototype
-}
+};
/**
* @constructor
@@ -1653,7 +1653,7 @@ WebInspector.HeapProfileHeader.prototype = {
WebInspector.HeapSnapshotLoadFromFileDelegate = function(snapshotHeader)
{
this._snapshotHeader = snapshotHeader;
-}
+};
WebInspector.HeapSnapshotLoadFromFileDelegate.prototype = {
/**
@@ -1700,7 +1700,7 @@ WebInspector.HeapSnapshotLoadFromFileDelegate.prototype = {
}
this._snapshotHeader.updateStatus(subtitle);
}
-}
+};
/**
* @constructor
@@ -1710,7 +1710,7 @@ WebInspector.HeapSnapshotLoadFromFileDelegate.prototype = {
WebInspector.SaveSnapshotOutputStreamDelegate = function(profileHeader)
{
this._profileHeader = profileHeader;
-}
+};
WebInspector.SaveSnapshotOutputStreamDelegate.prototype = {
/**
@@ -1748,7 +1748,7 @@ WebInspector.SaveSnapshotOutputStreamDelegate.prototype = {
WebInspector.console.error("Failed to read heap snapshot from temp file: " + /** @type {!ErrorEvent} */ (event).message);
this.onTransferFinished();
}
-}
+};
/**
* @constructor
@@ -1781,7 +1781,7 @@ WebInspector.HeapTrackingOverviewGrid = function(heapProfileHeader)
this._overviewGrid.setWindow(this._windowLeft, this._windowRight);
this._yScale = new WebInspector.HeapTrackingOverviewGrid.SmoothScale();
this._xScale = new WebInspector.HeapTrackingOverviewGrid.SmoothScale();
-}
+};
WebInspector.HeapTrackingOverviewGrid.IdsRangeChanged = "IdsRangeChanged";
@@ -2021,7 +2021,7 @@ WebInspector.HeapTrackingOverviewGrid.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
@@ -2031,7 +2031,7 @@ WebInspector.HeapTrackingOverviewGrid.SmoothScale = function()
{
this._lastUpdate = 0;
this._currentScale = 0.0;
-}
+};
WebInspector.HeapTrackingOverviewGrid.SmoothScale.prototype = {
/**
@@ -2053,7 +2053,7 @@ WebInspector.HeapTrackingOverviewGrid.SmoothScale.prototype = {
}
return this._currentScale;
}
-}
+};
/**
@@ -2062,7 +2062,7 @@ WebInspector.HeapTrackingOverviewGrid.SmoothScale.prototype = {
*/
WebInspector.HeapTrackingOverviewGrid.OverviewCalculator = function()
{
-}
+};
WebInspector.HeapTrackingOverviewGrid.OverviewCalculator.prototype = {
/**
@@ -2140,7 +2140,7 @@ WebInspector.HeapTrackingOverviewGrid.OverviewCalculator.prototype = {
{
return this._maximumBoundaries - this._minimumBoundaries;
}
-}
+};
/**
@@ -2155,7 +2155,7 @@ WebInspector.HeapSnapshotStatisticsView = function()
this._pieChart.element.classList.add("heap-snapshot-stats-pie-chart");
this.element.appendChild(this._pieChart.element);
this._labels = this.element.createChild("div", "heap-snapshot-stats-legend");
-}
+};
/**
* @param {number} value
@@ -2164,7 +2164,7 @@ WebInspector.HeapSnapshotStatisticsView = function()
WebInspector.HeapSnapshotStatisticsView._valueFormatter = function(value)
{
return WebInspector.UIString("%s KB", Number.withThousandsSeparator(Math.round(value / 1024)));
-}
+};
WebInspector.HeapSnapshotStatisticsView.prototype = {
/**
@@ -2198,7 +2198,7 @@ WebInspector.HeapSnapshotStatisticsView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -2210,7 +2210,7 @@ WebInspector.HeapAllocationStackView = function(target)
WebInspector.Widget.call(this);
this._target = target;
this._linkifier = new WebInspector.Linkifier();
-}
+};
WebInspector.HeapAllocationStackView.prototype = {
/**
@@ -2254,4 +2254,4 @@ WebInspector.HeapAllocationStackView.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698