| Index: Source/core/svg/SVGAnimateTransformElement.h
|
| diff --git a/Source/core/svg/SVGAnimateTransformElement.h b/Source/core/svg/SVGAnimateTransformElement.h
|
| index e70e47438ee78a372ee281ecdc3c3ec3e2b10d19..9ab025264714e76390c980260bb3e9943d91d3bd 100644
|
| --- a/Source/core/svg/SVGAnimateTransformElement.h
|
| +++ b/Source/core/svg/SVGAnimateTransformElement.h
|
| @@ -28,7 +28,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGAnimateTransformElement FINAL : public SVGAnimateElement {
|
| +class SVGAnimateTransformElement final : public SVGAnimateElement {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| DECLARE_NODE_FACTORY(SVGAnimateTransformElement);
|
| @@ -38,9 +38,9 @@ public:
|
| private:
|
| explicit SVGAnimateTransformElement(Document&);
|
|
|
| - virtual bool hasValidAttributeType() OVERRIDE;
|
| + virtual bool hasValidAttributeType() override;
|
|
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
|
|
| SVGTransformType m_type;
|
| };
|
|
|