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

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

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (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/BoxDecorationData.cpp ('k') | Source/core/paint/BoxPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/BoxPainter.h
diff --git a/Source/core/paint/BoxPainter.h b/Source/core/paint/BoxPainter.h
index 2f04dc2b3f5cbc19c86561125d237e66e121176a..666d566408117a4779ff755dc2098404e2d809a5 100644
--- a/Source/core/paint/BoxPainter.h
+++ b/Source/core/paint/BoxPainter.h
@@ -14,12 +14,12 @@ class BackgroundImageGeometry;
class FloatRoundedRect;
class LayoutPoint;
struct PaintInfo;
-class RenderBox;
+class LayoutBox;
class LayoutObject;
class BoxPainter {
public:
- BoxPainter(RenderBox& renderBox) : m_renderBox(renderBox) { }
+ BoxPainter(LayoutBox& layoutBox) : m_layoutBox(layoutBox) { }
void paint(const PaintInfo&, const LayoutPoint&);
void paintBoxDecorationBackground(const PaintInfo&, const LayoutPoint&);
@@ -68,7 +68,7 @@ private:
LayoutRect scrolledBackgroundRect();
// FIXME: this should be const.
- RenderBox& m_renderBox;
+ LayoutBox& m_layoutBox;
};
} // namespace blink
« no previous file with comments | « Source/core/paint/BoxDecorationData.cpp ('k') | Source/core/paint/BoxPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698