| Index: Source/core/svg/SVGPathSegClosePath.h
|
| diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
|
| index 62dda589cbbe7fe6dc3225bd231fb2e7debbc336..5c5052c39215666406e2586c6cc4b57319ea9596 100644
|
| --- a/Source/core/svg/SVGPathSegClosePath.h
|
| +++ b/Source/core/svg/SVGPathSegClosePath.h
|
| @@ -25,7 +25,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGPathSegClosePath FINAL : public SVGPathSegWithContext {
|
| +class SVGPathSegClosePath final : public SVGPathSegWithContext {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element)
|
| @@ -37,8 +37,8 @@ private:
|
| SVGPathSegClosePath(SVGPathElement* element)
|
| : SVGPathSegWithContext(element) { }
|
|
|
| - virtual unsigned short pathSegType() const OVERRIDE { return PATHSEG_CLOSEPATH; }
|
| - virtual String pathSegTypeAsLetter() const OVERRIDE { return "Z"; }
|
| + virtual unsigned short pathSegType() const override { return PATHSEG_CLOSEPATH; }
|
| + virtual String pathSegTypeAsLetter() const override { return "Z"; }
|
| };
|
|
|
| } // namespace blink
|
|
|