summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h b/chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h
index 4b6527e32cc..5e2b0f89c43 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGPathSegMovetoAbs.h
+++ b/chromium/third_party/WebKit/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