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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/HeapProfilerModel.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/sdk/HeapProfilerModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/HeapProfilerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/HeapProfilerModel.js
index 02fef9296b1600a0e2cf4d08f969ec4abe53c99c..024052e45442d7351635754d8f63554ae5e1b74a 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/HeapProfilerModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/HeapProfilerModel.js
@@ -9,7 +9,7 @@ WebInspector.HeapProfilerModel = function(target)
target.registerHeapProfilerDispatcher(new WebInspector.HeapProfilerDispatcher(this));
this._enabled = false;
this._heapProfilerAgent = target.heapProfilerAgent();
-}
+};
/** @enum {symbol} */
WebInspector.HeapProfilerModel.Events = {
@@ -18,7 +18,7 @@ WebInspector.HeapProfilerModel.Events = {
AddHeapSnapshotChunk: Symbol("AddHeapSnapshotChunk"),
ReportHeapSnapshotProgress: Symbol("ReportHeapSnapshotProgress"),
ResetProfiles: Symbol("ResetProfiles")
-}
+};
WebInspector.HeapProfilerModel.prototype = {
enable: function()
@@ -88,7 +88,7 @@ WebInspector.HeapProfilerModel.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};
/**
@@ -98,7 +98,7 @@ WebInspector.HeapProfilerModel.prototype = {
WebInspector.HeapProfilerDispatcher = function(model)
{
this._heapProfilerModel = model;
-}
+};
WebInspector.HeapProfilerDispatcher.prototype = {
/**
@@ -147,4 +147,4 @@ WebInspector.HeapProfilerDispatcher.prototype = {
{
this._heapProfilerModel.resetProfiles();
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698