Index: Source/core/svg/SVGPathSegCurvetoQuadraticRel.h |
diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h b/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h |
index 2c51a8be7c31446e02125ebbb07c2feb0fc8e2c9..ad2725ab09d2b2ad02c0bcbc18b5886fadcd5faf 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h |
+++ b/Source/core/svg/SVGPathSegCurvetoQuadraticRel.h |
@@ -26,7 +26,7 @@ |
namespace WebCore { |
-class SVGPathSegCurvetoQuadraticRel : public SVGPathSegCurvetoQuadratic { |
+class SVGPathSegCurvetoQuadraticRel FINAL : public SVGPathSegCurvetoQuadratic { |
public: |
static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1) |
{ |
@@ -40,8 +40,8 @@ private: |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATIC_REL; } |
- virtual String pathSegTypeAsLetter() const { return "q"; } |
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CURVETO_QUADRATIC_REL; } |
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "q"; } |
}; |
} // namespace WebCore |