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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.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/JSHeapSnapshot.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
index 3e3907022e0e68e087d64f6ca9faefdcc0cca56f..7147302cf9e92cfd925e05ee6fbc2606a7f0070d 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/JSHeapSnapshot.js
@@ -43,7 +43,7 @@ WebInspector.JSHeapSnapshot = function(profile, progress)
};
this._lazyStringCache = {};
WebInspector.HeapSnapshot.call(this, profile, progress);
-}
+};
WebInspector.JSHeapSnapshot.prototype = {
/**
@@ -481,7 +481,7 @@ WebInspector.JSHeapSnapshot.prototype = {
WebInspector.JSHeapSnapshotNode = function(snapshot, nodeIndex)
{
WebInspector.HeapSnapshotNode.call(this, snapshot, nodeIndex);
-}
+};
WebInspector.JSHeapSnapshotNode.prototype = {
/**
@@ -677,7 +677,7 @@ WebInspector.JSHeapSnapshotNode.prototype = {
WebInspector.JSHeapSnapshotEdge = function(snapshot, edgeIndex)
{
WebInspector.HeapSnapshotEdge.call(this, snapshot, edgeIndex);
-}
+};
WebInspector.JSHeapSnapshotEdge.prototype = {
/**
@@ -835,7 +835,7 @@ WebInspector.JSHeapSnapshotEdge.prototype = {
WebInspector.JSHeapSnapshotRetainerEdge = function(snapshot, retainerIndex)
{
WebInspector.HeapSnapshotRetainerEdge.call(this, snapshot, retainerIndex);
-}
+};
WebInspector.JSHeapSnapshotRetainerEdge.prototype = {
/**
@@ -889,5 +889,5 @@ WebInspector.JSHeapSnapshotRetainerEdge.prototype = {
},
__proto__: WebInspector.HeapSnapshotRetainerEdge.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698