| Index: Source/core/layout/svg/LayoutSVGResourceGradient.h
|
| diff --git a/Source/core/layout/svg/LayoutSVGResourceGradient.h b/Source/core/layout/svg/LayoutSVGResourceGradient.h
|
| index e6835d335a3df4fe8a363c3c0720a7b0e7af9621..003933918c6acaa5ed7dd969b3aab73fb2dd52c0 100644
|
| --- a/Source/core/layout/svg/LayoutSVGResourceGradient.h
|
| +++ b/Source/core/layout/svg/LayoutSVGResourceGradient.h
|
| @@ -42,12 +42,12 @@ class LayoutSVGResourceGradient : public LayoutSVGResourcePaintServer {
|
| public:
|
| explicit LayoutSVGResourceGradient(SVGGradientElement*);
|
|
|
| - virtual void removeAllClientsFromCache(bool markForInvalidation = true) override final;
|
| - virtual void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override final;
|
| + void removeAllClientsFromCache(bool markForInvalidation = true) final;
|
| + void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) final;
|
|
|
| - virtual SVGPaintServer preparePaintServer(const LayoutObject&) override final;
|
| + SVGPaintServer preparePaintServer(const LayoutObject&) final;
|
|
|
| - virtual bool isChildAllowed(LayoutObject* child, const ComputedStyle&) const override final;
|
| + bool isChildAllowed(LayoutObject* child, const ComputedStyle&) const final;
|
|
|
| protected:
|
| void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const;
|
|
|