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

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

Issue 933953003: Move the remaining rendering/svg/RenderSVG* files 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/layout/svg/SVGLayoutTreeAsText.cpp ('k') | Source/core/paint/SVGRootPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGRootPainter.h
diff --git a/Source/core/paint/SVGRootPainter.h b/Source/core/paint/SVGRootPainter.h
index 4494473de9c51f675a71a21da661a76f4a95791a..3c1741b69941070a404258c4db399903ab9e088a 100644
--- a/Source/core/paint/SVGRootPainter.h
+++ b/Source/core/paint/SVGRootPainter.h
@@ -9,16 +9,16 @@ namespace blink {
struct PaintInfo;
class LayoutPoint;
-class RenderSVGRoot;
+class LayoutSVGRoot;
class SVGRootPainter {
public:
- SVGRootPainter(RenderSVGRoot& renderSVGRoot) : m_renderSVGRoot(renderSVGRoot) { }
+ SVGRootPainter(LayoutSVGRoot& renderSVGRoot) : m_renderSVGRoot(renderSVGRoot) { }
void paint(const PaintInfo&, const LayoutPoint&);
private:
- RenderSVGRoot& m_renderSVGRoot;
+ LayoutSVGRoot& m_renderSVGRoot;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/svg/SVGLayoutTreeAsText.cpp ('k') | Source/core/paint/SVGRootPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698