Index: Source/core/svg/SVGPathSegCurvetoCubicRel.h |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicRel.h b/Source/core/svg/SVGPathSegCurvetoCubicRel.h |
index 3910fcd30d2c7684df67d2df5b851327888b8933..bd944d35fe2f9e7cbd18e0fd05d4b81d275ebb6a 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubicRel.h |
+++ b/Source/core/svg/SVGPathSegCurvetoCubicRel.h |
@@ -26,7 +26,7 @@ |
namespace WebCore { |
-class SVGPathSegCurvetoCubicRel : public SVGPathSegCurvetoCubic { |
+class SVGPathSegCurvetoCubicRel FINAL : public SVGPathSegCurvetoCubic { |
public: |
static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2) |
{ |
@@ -40,8 +40,8 @@ private: |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_CUBIC_REL; } |
- virtual String pathSegTypeAsLetter() const { return "c"; } |
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_CUBIC_REL; } |
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "c"; } |
}; |
} // namespace WebCore |