Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1560)

Unified Diff: Source/core/rendering/svg/RenderSVGResourceGradient.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/svg/RenderSVGResourceGradient.h
diff --git a/Source/core/rendering/svg/RenderSVGResourceGradient.h b/Source/core/rendering/svg/RenderSVGResourceGradient.h
index 5b1b77c3c611e11fdbf933058d4d3b4daaff0446..48871e883b6e37d6b8916a5346a826da780035b8 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, const RenderStyle&) const override final;
+ virtual bool isChildAllowed(LayoutObject* child, const 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;
};
}

Powered by Google App Engine
This is Rietveld 408576698