Index: Source/core/svg/SVGPathSegMovetoAbs.h |
diff --git a/Source/core/svg/SVGPathSegMovetoAbs.h b/Source/core/svg/SVGPathSegMovetoAbs.h |
index 4b6527e32cc80aa2153d36d88108a9fa249f32eb..5e2b0f89c43d1674e74fd73063ff2d70194c01dd 100644 |
--- a/Source/core/svg/SVGPathSegMovetoAbs.h |
+++ b/Source/core/svg/SVGPathSegMovetoAbs.h |
@@ -26,7 +26,7 @@ |
namespace WebCore { |
-class SVGPathSegMovetoAbs : public SVGPathSegSingleCoordinate { |
+class SVGPathSegMovetoAbs FINAL : public SVGPathSegSingleCoordinate { |
public: |
static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) |
{ |
@@ -40,8 +40,8 @@ private: |
ScriptWrappable::init(this); |
} |
- virtual unsigned short pathSegType() const { return PATHSEG_MOVETO_ABS; } |
- virtual String pathSegTypeAsLetter() const { return "M"; } |
+ virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_MOVETO_ABS; } |
+ virtual String pathSegTypeAsLetter() const OVERRIDE { return "M"; } |
}; |
} // namespace WebCore |