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

Unified Diff: Source/core/layout/LayoutObject.h

Issue 944923004: rendering/RenderBoxModelObject -> layout/LayoutBoxModelObject (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/LayoutImage.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index 230591eeabb1c01d147a9421305e070cd3b2a29b..5473b3dc67f638551ad8ff30bc0d0851a6b72bad 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -62,7 +62,7 @@ class InlineBox;
class Position;
class PositionWithAffinity;
class PseudoStyleRequest;
-class RenderBoxModelObject;
+class LayoutBoxModelObject;
class RenderBlock;
class LayoutFlowThread;
class LayoutGeometryMap;
@@ -189,7 +189,7 @@ public:
// Convenience function for getting to the nearest enclosing box of a LayoutObject.
RenderBox* enclosingBox() const;
- RenderBoxModelObject* enclosingBoxModelObject() const;
+ LayoutBoxModelObject* enclosingBoxModelObject() const;
RenderBox* enclosingScrollableBox() const;
@@ -516,7 +516,7 @@ public:
bool isAnonymousColumnSpanBlock() const { return style()->columnSpan() && isAnonymousBlock(); }
bool isElementContinuation() const { return node() && node()->renderer() != this; }
bool isInlineElementContinuation() const { return isElementContinuation() && isInline(); }
- virtual RenderBoxModelObject* virtualContinuation() const { return 0; }
+ virtual LayoutBoxModelObject* virtualContinuation() const { return 0; }
bool isFloating() const { return m_bitfields.floating(); }
« no previous file with comments | « Source/core/layout/LayoutImage.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698