| Index: Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h
|
| diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h b/Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h
|
| index b55dbc21183db851faef6ec12dc756536b8d8878..d7b5de0ae10b73479b201312664162675c991c7f 100644
|
| --- a/Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h
|
| +++ b/Source/core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h
|
| @@ -26,7 +26,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGPathSegCurvetoQuadraticSmoothAbs FINAL : public SVGPathSegSingleCoordinate {
|
| +class SVGPathSegCurvetoQuadraticSmoothAbs final : public SVGPathSegSingleCoordinate {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, float x, float y)
|
| @@ -38,8 +38,8 @@ private:
|
| SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, float x, float y)
|
| : SVGPathSegSingleCoordinate(element, x, y) { }
|
|
|
| - virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS; }
|
| - virtual String pathSegTypeAsLetter() const OVERRIDE { return "T"; }
|
| + virtual unsigned short pathSegType() const override { return PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS; }
|
| + virtual String pathSegTypeAsLetter() const override { return "T"; }
|
| };
|
|
|
| } // namespace blink
|
|
|