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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.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/HeapSnapshotLoader.js
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
index 637394a07ec81b146ca13d2b54f49e9aa025c728..bb235a5d0aa6bf982b3d8f90eb9ee178ef7df591 100644
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js
@@ -36,7 +36,7 @@ WebInspector.HeapSnapshotLoader = function(dispatcher)
{
this._reset();
this._progress = new WebInspector.HeapSnapshotProgress(dispatcher);
-}
+};
WebInspector.HeapSnapshotLoader.prototype = {
dispose: function()
@@ -312,4 +312,4 @@ WebInspector.HeapSnapshotLoader.prototype = {
this._state = "find-nodes";
this._snapshot.snapshot = /** @type {!HeapSnapshotHeader} */ (JSON.parse(data));
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698