| Index: Source/core/svg/SVGPathSegMovetoRel.h
|
| diff --git a/Source/core/svg/SVGPathSegMovetoRel.h b/Source/core/svg/SVGPathSegMovetoRel.h
|
| index 023c3e930d3c22b0860230f1268d943e41b0314c..0d4b5d8b90221a80e0a5ab680cbd1d0ad9f20058 100644
|
| --- a/Source/core/svg/SVGPathSegMovetoRel.h
|
| +++ b/Source/core/svg/SVGPathSegMovetoRel.h
|
| @@ -26,7 +26,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class SVGPathSegMovetoRel : public SVGPathSegSingleCoordinate {
|
| +class SVGPathSegMovetoRel FINAL : public SVGPathSegSingleCoordinate {
|
| public:
|
| static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
|
| {
|
| @@ -40,8 +40,8 @@ private:
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| - virtual unsigned short pathSegType() const { return PATHSEG_MOVETO_REL; }
|
| - virtual String pathSegTypeAsLetter() const { return "m"; }
|
| + virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_MOVETO_REL; }
|
| + virtual String pathSegTypeAsLetter() const OVERRIDE { return "m"; }
|
| };
|
|
|
| } // namespace WebCore
|
|
|