| Index: Source/core/rendering/svg/RenderSVGResourceGradient.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGResourceGradient.h b/Source/core/rendering/svg/RenderSVGResourceGradient.h
|
| index f28beacfcb157b960fb54588e524f24eece911bf..f1079d13166c0b7b3ca3cb3fa8d2e58d81e6f68f 100644
|
| --- a/Source/core/rendering/svg/RenderSVGResourceGradient.h
|
| +++ b/Source/core/rendering/svg/RenderSVGResourceGradient.h
|
| @@ -43,11 +43,11 @@ public:
|
| explicit RenderSVGResourceGradient(SVGGradientElement*);
|
|
|
| virtual void removeAllClientsFromCache(bool markForInvalidation = true) override final;
|
| - virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) override final;
|
| + virtual void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override final;
|
|
|
| - virtual SVGPaintServer preparePaintServer(const RenderObject&) override final;
|
| + virtual SVGPaintServer preparePaintServer(const LayoutObject&) override final;
|
|
|
| - virtual bool isChildAllowed(RenderObject* child, RenderStyle*) const override final;
|
| + virtual bool isChildAllowed(LayoutObject* child, RenderStyle*) const override final;
|
|
|
| protected:
|
| void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const;
|
| @@ -61,7 +61,7 @@ protected:
|
|
|
| private:
|
| bool m_shouldCollectGradientAttributes : 1;
|
| - HashMap<const RenderObject*, OwnPtr<GradientData> > m_gradientMap;
|
| + HashMap<const LayoutObject*, OwnPtr<GradientData>> m_gradientMap;
|
| };
|
|
|
| }
|
|
|