| Index: Source/core/svg/SVGGradientElement.h
|
| diff --git a/Source/core/svg/SVGGradientElement.h b/Source/core/svg/SVGGradientElement.h
|
| index 289d06a539517b909f0eac6cd1bc93b0764afb1d..e6b9cdb1666dfd551ef8faad175889e331df0495 100644
|
| --- a/Source/core/svg/SVGGradientElement.h
|
| +++ b/Source/core/svg/SVGGradientElement.h
|
| @@ -89,12 +89,12 @@ protected:
|
|
|
| bool isSupportedAttribute(const QualifiedName&);
|
| virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual void svgAttributeChanged(const QualifiedName&);
|
| + virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
|
|
|
| private:
|
| - virtual bool needsPendingResourceHandling() const { return false; }
|
| + virtual bool needsPendingResourceHandling() const OVERRIDE FINAL { return false; }
|
|
|
| - virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
|
| + virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE FINAL;
|
|
|
| BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGGradientElement)
|
| DECLARE_ANIMATED_ENUMERATION(SpreadMethod, spreadMethod, SVGSpreadMethodType)
|
|
|