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

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

Issue 666163005: Factor SVG root painter code into SVGRootPainter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/core.gypi ('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/ReplacedPainter.h b/Source/core/paint/SVGRootPainter.h
similarity index 55%
copy from Source/core/paint/ReplacedPainter.h
copy to Source/core/paint/SVGRootPainter.h
index fd7430998a121333d74a0190e5ae5987cb0b9f53..0c169dec2454c2df91701c918cf5e37631638981 100644
--- a/Source/core/paint/ReplacedPainter.h
+++ b/Source/core/paint/SVGRootPainter.h
@@ -2,25 +2,25 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef ReplacedPainter_h
-#define ReplacedPainter_h
+#ifndef SVGRootPainter_h
+#define SVGRootPainter_h
namespace blink {
struct PaintInfo;
class LayoutPoint;
-class RenderReplaced;
+class RenderSVGRoot;
-class ReplacedPainter {
+class SVGRootPainter {
public:
- ReplacedPainter(RenderReplaced& renderReplaced) : m_renderReplaced(renderReplaced) { }
+ SVGRootPainter(RenderSVGRoot& renderSVGRoot) : m_renderSVGRoot(renderSVGRoot) { }
void paint(PaintInfo&, const LayoutPoint&);
private:
- RenderReplaced& m_renderReplaced;
+ RenderSVGRoot& m_renderSVGRoot;
};
} // namespace blink
-#endif // ReplacedPainter_h
+#endif // SVGRootPainter_h
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/paint/SVGRootPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698