| Index: Source/core/svg/SVGPathElement.h
|
| diff --git a/Source/core/svg/SVGPathElement.h b/Source/core/svg/SVGPathElement.h
|
| index 4e8fe2502b0d8ceab07f7c6aecf1e8135b7261ab..7f4e4202a28ea9ffa2a6dea6265e7019f755ae91 100644
|
| --- a/Source/core/svg/SVGPathElement.h
|
| +++ b/Source/core/svg/SVGPathElement.h
|
| @@ -51,7 +51,7 @@ class SVGPathSegCurvetoCubicSmoothRel;
|
| class SVGPathSegCurvetoQuadraticSmoothAbs;
|
| class SVGPathSegCurvetoQuadraticSmoothRel;
|
|
|
| -class SVGPathElement FINAL : public SVGGeometryElement {
|
| +class SVGPathElement final : public SVGGeometryElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(SVGPathElement);
|
| @@ -94,17 +94,17 @@ public:
|
|
|
| void pathSegListChanged(ListModification = ListModificationUnknown);
|
|
|
| - virtual FloatRect getBBox() OVERRIDE;
|
| + virtual FloatRect getBBox() override;
|
|
|
| private:
|
| explicit SVGPathElement(Document&);
|
|
|
| bool isSupportedAttribute(const QualifiedName&);
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual void svgAttributeChanged(const QualifiedName&) override;
|
|
|
| - virtual Node::InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
|
| - virtual void removedFrom(ContainerNode*) OVERRIDE;
|
| + virtual Node::InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| + virtual void removedFrom(ContainerNode*) override;
|
|
|
| void invalidateMPathDependencies();
|
|
|
|
|