| 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(" "));
|
| -}
|
| +};
|
|
|