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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/BezierUI.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/ui/BezierUI.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js b/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js
index fb9394441db2fc699b58d6bfd52b69f91127f0e9..89e1bcae6d7a03b64ed075f1221e59e932ee3afd 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js
@@ -17,7 +17,7 @@ WebInspector.BezierUI = function(width, height, marginTop, controlPointRadius, l
this.marginTop = marginTop;
this.radius = controlPointRadius;
this.linearLine = linearLine;
-}
+};
WebInspector.BezierUI.prototype = {
/**
@@ -98,7 +98,7 @@ WebInspector.BezierUI.prototype = {
this._drawControlPoints(group, 0, height, bezier.controlPoints[0].x * width, (1 - bezier.controlPoints[0].y) * height);
this._drawControlPoints(group, width, 0, bezier.controlPoints[1].x * width, (1 - bezier.controlPoints[1].y) * height);
}
-}
+};
WebInspector.BezierUI.Height = 26;
@@ -124,4 +124,4 @@ WebInspector.BezierUI.drawVelocityChart = function(bezier, path, width)
}
pathBuilder = pathBuilder.concat(["L", width.toFixed(2), height, "Z"]);
path.setAttribute("d", pathBuilder.join(" "));
-}
+};

Powered by Google App Engine
This is Rietveld 408576698