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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.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/PaintProfiler.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js b/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
index 5eb744d540fbbea3ffbf41c69f6ddfdaa684df89..c5c61e0e9f51ac39b30440da74ea88430f966985 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
@@ -42,7 +42,7 @@ WebInspector.PaintProfilerSnapshot = function(target, snapshotId)
{
this._target = target;
this._id = snapshotId;
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -52,7 +52,7 @@ WebInspector.PaintProfilerSnapshot = function(target, snapshotId)
WebInspector.PaintProfilerSnapshot.loadFromFragments = function(target, fragments)
{
return target.layerTreeAgent().loadSnapshot(fragments, (error, snapshotId) => error ? null : new WebInspector.PaintProfilerSnapshot(target, snapshotId));
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -67,7 +67,7 @@ WebInspector.PaintProfilerSnapshot.load = function(target, encodedPicture)
picture: encodedPicture
};
return WebInspector.PaintProfilerSnapshot.loadFromFragments(target, [fragment]);
-}
+};
WebInspector.PaintProfilerSnapshot.prototype = {
dispose: function()
@@ -144,4 +144,4 @@ WebInspector.PaintProfilerLogItem = function(rawEntry, commandIndex)
this.method = rawEntry.method;
this.params = rawEntry.params;
this.commandIndex = commandIndex;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698