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

Unified Diff: Source/core/paint/SVGShapePainter.h

Issue 927583002: Moving RenderSVG* files from rendering/ to layout/ (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
« no previous file with comments | « Source/core/paint/SVGImagePainter.cpp ('k') | Source/core/paint/SVGShapePainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGShapePainter.h
diff --git a/Source/core/paint/SVGShapePainter.h b/Source/core/paint/SVGShapePainter.h
index ea4b0a10a616c24b6ab4335e1c56fabc81460784..1f2b9b23e2d315136e5fcf15afe6181d4be888fe 100644
--- a/Source/core/paint/SVGShapePainter.h
+++ b/Source/core/paint/SVGShapePainter.h
@@ -13,11 +13,11 @@ class FloatPoint;
class GraphicsContext;
class Path;
class LayoutSVGResourceMarker;
-class RenderSVGShape;
+class LayoutSVGShape;
class SVGShapePainter {
public:
- SVGShapePainter(RenderSVGShape& renderSVGShape) : m_renderSVGShape(renderSVGShape) { }
+ SVGShapePainter(LayoutSVGShape& renderSVGShape) : m_renderSVGShape(renderSVGShape) { }
void paint(const PaintInfo&);
@@ -30,7 +30,7 @@ private:
void strokeZeroLengthLineCaps(GraphicsContext*);
Path* zeroLengthLinecapPath(const FloatPoint&) const;
- RenderSVGShape& m_renderSVGShape;
+ LayoutSVGShape& m_renderSVGShape;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/SVGImagePainter.cpp ('k') | Source/core/paint/SVGShapePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698