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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.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/heap_snapshot_worker/AllocationProfile.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
index 0dfc4e73899eccb809a7c5981043e73882e51e78..532ff6781d71879c0ec0773a0803deb96a9264b3 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
@@ -46,7 +46,7 @@ WebInspector.AllocationProfile = function(profile, liveObjectStats)
this._buildFunctionAllocationInfos(profile);
this._traceTree = this._buildAllocationTree(profile, liveObjectStats);
-}
+};
WebInspector.AllocationProfile.prototype = {
_buildFunctionAllocationInfos: function(profile)
@@ -260,7 +260,7 @@ WebInspector.AllocationProfile.prototype = {
hasChildren
);
}
-}
+};
/**
@@ -283,7 +283,7 @@ WebInspector.TopDownAllocationNode = function(id, functionInfo, count, size, liv
this.liveSize = liveSize;
this.parent = parent;
this.children = [];
-}
+};
/**
@@ -299,7 +299,7 @@ WebInspector.BottomUpAllocationNode = function(functionInfo)
this.liveSize = 0;
this.traceTopIds = [];
this._callers = [];
-}
+};
WebInspector.BottomUpAllocationNode.prototype = {
@@ -340,7 +340,7 @@ WebInspector.BottomUpAllocationNode.prototype = {
{
return this._callers.length > 0;
}
-}
+};
/**
@@ -363,7 +363,7 @@ WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptI
this.totalLiveCount = 0;
this.totalLiveSize = 0;
this._traceTops = [];
-}
+};
WebInspector.FunctionAllocationInfo.prototype = {
/**
@@ -418,4 +418,4 @@ WebInspector.FunctionAllocationInfo.prototype = {
}
}
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698