Index: Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h b/Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h |
index 4b7be696afe0c60af16a69378ab0c2bafc856992..2fa5b9ce21f153fd7cc760aad6a8a57bf7c7008d 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h |
+++ b/Source/core/svg/SVGPathSegCurvetoCubicSmoothRel.h |
@@ -26,7 +26,7 @@ |
namespace WebCore { |
-class SVGPathSegCurvetoCubicSmoothRel : public SVGPathSegCurvetoCubicSmooth { |
+class SVGPathSegCurvetoCubicSmoothRel FINAL : public SVGPathSegCurvetoCubicSmooth { |
public: |
static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2) |
{ |
@@ -40,8 +40,8 @@ private: |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_CUBIC_SMOOTH_REL; } |
- virtual String pathSegTypeAsLetter() const { return "s"; } |
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_CUBIC_SMOOTH_REL; } |
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "s"; } |
}; |
} // namespace WebCore |