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