| Index: Source/core/svg/SVGPathSegClosePath.h
|
| diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
|
| index 4c6adc224515722f30292ffe43a4c03923b0855a..5f2258f380fe909cfc785bd581885b0ba053161c 100644
|
| --- a/Source/core/svg/SVGPathSegClosePath.h
|
| +++ b/Source/core/svg/SVGPathSegClosePath.h
|
| @@ -25,7 +25,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class SVGPathSegClosePath : public SVGPathSegWithContext {
|
| +class SVGPathSegClosePath FINAL : public SVGPathSegWithContext {
|
| public:
|
| static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role)
|
| {
|
| @@ -39,8 +39,8 @@ private:
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| - virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; }
|
| - virtual String pathSegTypeAsLetter() const { return "Z"; }
|
| + virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CLOSEPATH; }
|
| + virtual String pathSegTypeAsLetter() const OVERRIDE { return "Z"; }
|
| };
|
|
|
| } // namespace WebCore
|
|
|