Index: Source/core/svg/SVGPathSegArcAbs.h |
diff --git a/Source/core/svg/SVGPathSegArcAbs.h b/Source/core/svg/SVGPathSegArcAbs.h |
index 779308a333915b2e4bcec935c3a98f62dcd94454..cb6bbd6f8a4d9d9dd7d2174abe9947aedb33d95d 100644 |
--- a/Source/core/svg/SVGPathSegArcAbs.h |
+++ b/Source/core/svg/SVGPathSegArcAbs.h |
@@ -26,7 +26,7 @@ |
namespace blink { |
-class SVGPathSegArcAbs FINAL : public SVGPathSegArc { |
+class SVGPathSegArcAbs final : public SVGPathSegArc { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
@@ -38,8 +38,8 @@ private: |
SVGPathSegArcAbs(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) |
: SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { } |
- virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_ARC_ABS; } |
- virtual String pathSegTypeAsLetter() const OVERRIDE { return "A"; } |
+ virtual unsigned short pathSegType() const override { return PATHSEG_ARC_ABS; } |
+ virtual String pathSegTypeAsLetter() const override { return "A"; } |
}; |
} // namespace blink |