| Index: Source/core/svg/SVGPathSegArcRel.h
|
| diff --git a/Source/core/svg/SVGPathSegArcRel.h b/Source/core/svg/SVGPathSegArcRel.h
|
| index 076c930bb1240352263cfe040e1c2acf47c68920..5add5de952daa725f44518056bd8fb5da41d5d2c 100644
|
| --- a/Source/core/svg/SVGPathSegArcRel.h
|
| +++ b/Source/core/svg/SVGPathSegArcRel.h
|
| @@ -26,7 +26,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class SVGPathSegArcRel : public SVGPathSegArc {
|
| +class SVGPathSegArcRel FINAL : public SVGPathSegArc {
|
| public:
|
| static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
| {
|
| @@ -40,8 +40,8 @@ private:
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| - virtual unsigned short pathSegType() const { return PATHSEG_ARC_REL; }
|
| - virtual String pathSegTypeAsLetter() const { return "a"; }
|
| + virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_ARC_REL; }
|
| + virtual String pathSegTypeAsLetter() const OVERRIDE { return "a"; }
|
| };
|
|
|
| } // namespace WebCore
|
|
|