| Index: Source/core/svg/SVGPathSegArcAbs.h
|
| diff --git a/Source/core/svg/SVGPathSegArcAbs.h b/Source/core/svg/SVGPathSegArcAbs.h
|
| index 85e686e30446af1979e626335df9c7c579c76a91..74bfcda8d351a63f339e8f38b7a9cd38b5249e47 100644
|
| --- a/Source/core/svg/SVGPathSegArcAbs.h
|
| +++ b/Source/core/svg/SVGPathSegArcAbs.h
|
| @@ -26,7 +26,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class SVGPathSegArcAbs : public SVGPathSegArc {
|
| +class SVGPathSegArcAbs FINAL : public SVGPathSegArc {
|
| public:
|
| static PassRefPtr<SVGPathSegArcAbs> 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_ABS; }
|
| - virtual String pathSegTypeAsLetter() const { return "A"; }
|
| + virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_ARC_ABS; }
|
| + virtual String pathSegTypeAsLetter() const OVERRIDE { return "A"; }
|
| };
|
|
|
| } // namespace WebCore
|
|
|