| Index: Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| diff --git a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| index 194eaa7d91bdfbea0009b5731305b4dbbcfc15d6..9e0ffcd3ccdcb61fd54d370ebf0d2b4dd936cd69 100644
|
| --- a/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| +++ b/Source/core/svg/SVGFilterPrimitiveStandardAttributes.h
|
| @@ -56,9 +56,9 @@ protected:
|
| SVGFilterPrimitiveStandardAttributes(const QualifiedName&, Document&);
|
|
|
| bool isSupportedAttribute(const QualifiedName&);
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
|
| - virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
| + virtual void svgAttributeChanged(const QualifiedName&) override;
|
| + virtual void childrenChanged(const ChildrenChange&) override;
|
|
|
| inline void invalidate()
|
| {
|
| @@ -69,10 +69,10 @@ protected:
|
| void primitiveAttributeChanged(const QualifiedName&);
|
|
|
| private:
|
| - virtual bool isFilterEffect() const OVERRIDE FINAL { return true; }
|
| + virtual bool isFilterEffect() const override final { return true; }
|
|
|
| - virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE FINAL;
|
| - virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE FINAL;
|
| + virtual RenderObject* createRenderer(RenderStyle*) override final;
|
| + virtual bool rendererIsNeeded(const RenderStyle&) override final;
|
|
|
| RefPtr<SVGAnimatedLength> m_x;
|
| RefPtr<SVGAnimatedLength> m_y;
|
|
|