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

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

Issue 923533002: Move RenderSVGContainer to layout/svg/LayoutSVGContainer. (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/SVGLayoutSupport.cpp ('k') | Source/core/paint/SVGContainerPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGContainerPainter.h
diff --git a/Source/core/paint/SVGContainerPainter.h b/Source/core/paint/SVGContainerPainter.h
index 339da261f89796dffe42ad37f8629f4e5fe65a5f..0951ab160ad99122eeb5b1bb54b1f32a6b667d0e 100644
--- a/Source/core/paint/SVGContainerPainter.h
+++ b/Source/core/paint/SVGContainerPainter.h
@@ -8,16 +8,16 @@
namespace blink {
struct PaintInfo;
-class RenderSVGContainer;
+class LayoutSVGContainer;
class SVGContainerPainter {
public:
- SVGContainerPainter(RenderSVGContainer& renderSVGContainer) : m_renderSVGContainer(renderSVGContainer) { }
+ SVGContainerPainter(LayoutSVGContainer& renderSVGContainer) : m_renderSVGContainer(renderSVGContainer) { }
void paint(const PaintInfo&);
private:
- RenderSVGContainer& m_renderSVGContainer;
+ LayoutSVGContainer& m_renderSVGContainer;
};
} // namespace blink
« no previous file with comments | « Source/core/layout/svg/SVGLayoutSupport.cpp ('k') | Source/core/paint/SVGContainerPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698