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

Unified Diff: Source/core/layout/LayerReflectionInfo.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/layout/LayerClipper.cpp ('k') | Source/core/layout/LayerReflectionInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayerReflectionInfo.h
diff --git a/Source/core/layout/LayerReflectionInfo.h b/Source/core/layout/LayerReflectionInfo.h
index a745a1f01adcea367ca20e31f6e6baa3b3f8e30f..2bfaab958982e33c7007169e19bddf894902128a 100644
--- a/Source/core/layout/LayerReflectionInfo.h
+++ b/Source/core/layout/LayerReflectionInfo.h
@@ -57,7 +57,7 @@ class LayoutReplica;
class LayerReflectionInfo {
WTF_MAKE_NONCOPYABLE(LayerReflectionInfo);
public:
- explicit LayerReflectionInfo(RenderBox&);
+ explicit LayerReflectionInfo(LayoutBox&);
void destroy();
LayoutReplica* reflection() const { return m_reflection; }
@@ -70,10 +70,10 @@ public:
void paint(GraphicsContext*, const LayerPaintingInfo&, PaintLayerFlags);
private:
- RenderBox& box() { return *m_box; }
- const RenderBox& box() const { return *m_box; }
+ LayoutBox& box() { return *m_box; }
+ const LayoutBox& box() const { return *m_box; }
- RenderBox* m_box;
+ LayoutBox* m_box;
LayoutReplica* m_reflection;
// A state bit tracking if we are painting inside a replica.
« no previous file with comments | « Source/core/layout/LayerClipper.cpp ('k') | Source/core/layout/LayerReflectionInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698