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

Unified Diff: Source/core/paint/SVGImagePainter.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/SVGForeignObjectPainter.cpp ('k') | Source/core/paint/SVGImagePainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGImagePainter.h
diff --git a/Source/core/paint/SVGImagePainter.h b/Source/core/paint/SVGImagePainter.h
index f2841ae3bfcf76252526d412a8f91eff48ab131b..1e261e9da193673cbc018b83249f967d3d1a6878 100644
--- a/Source/core/paint/SVGImagePainter.h
+++ b/Source/core/paint/SVGImagePainter.h
@@ -8,11 +8,11 @@
namespace blink {
struct PaintInfo;
-class RenderSVGImage;
+class LayoutSVGImage;
class SVGImagePainter {
public:
- SVGImagePainter(RenderSVGImage& renderSVGImage) : m_renderSVGImage(renderSVGImage) { }
+ SVGImagePainter(LayoutSVGImage& renderSVGImage) : m_renderSVGImage(renderSVGImage) { }
void paint(const PaintInfo&);
@@ -20,7 +20,7 @@ private:
// Assumes the PaintInfo context has had all local transforms applied.
void paintForeground(const PaintInfo&);
- RenderSVGImage& m_renderSVGImage;
+ LayoutSVGImage& m_renderSVGImage;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/SVGForeignObjectPainter.cpp ('k') | Source/core/paint/SVGImagePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698