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

Unified Diff: Source/core/paint/BoxClipper.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/BlockPainter.cpp ('k') | Source/core/paint/BoxClipper.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/BoxClipper.h
diff --git a/Source/core/paint/BoxClipper.h b/Source/core/paint/BoxClipper.h
index 8ffc4a707395e391c20e9464c0ba87297b785cbe..c48c40508d60ad345ac4f7479dec3776953edd53 100644
--- a/Source/core/paint/BoxClipper.h
+++ b/Source/core/paint/BoxClipper.h
@@ -11,14 +11,14 @@
namespace blink {
-class RenderBox;
+class LayoutBox;
struct PaintInfo;
enum ContentsClipBehavior { ForceContentsClip, SkipContentsClipIfPossible };
class BoxClipper {
public:
- BoxClipper(RenderBox&, const PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior);
+ BoxClipper(LayoutBox&, const PaintInfo&, const LayoutPoint& accumulatedOffset, ContentsClipBehavior);
~BoxClipper();
bool pushedClip() { return m_pushedClip; }
@@ -26,7 +26,7 @@ private:
bool m_pushedClip;
LayoutPoint m_accumulatedOffset;
const PaintInfo& m_paintInfo;
- RenderBox& m_box;
+ LayoutBox& m_box;
DisplayItem::Type m_clipType;
};
« no previous file with comments | « Source/core/paint/BlockPainter.cpp ('k') | Source/core/paint/BoxClipper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698