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

Unified Diff: Source/core/layout/LayoutTableRow.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/LayoutTableCol.cpp ('k') | Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutTableRow.h
diff --git a/Source/core/layout/LayoutTableRow.h b/Source/core/layout/LayoutTableRow.h
index 98f9ab5c3f0232e71da920e6cccfdbed5dafe57d..c01a7d5798c86e8ddb9de1dc0863417571630d69 100644
--- a/Source/core/layout/LayoutTableRow.h
+++ b/Source/core/layout/LayoutTableRow.h
@@ -32,7 +32,7 @@ namespace blink {
static const unsigned unsetRowIndex = 0x7FFFFFFF;
static const unsigned maxRowIndex = 0x7FFFFFFE; // 2,147,483,646
-class LayoutTableRow final : public RenderBox {
+class LayoutTableRow final : public LayoutBox {
public:
explicit LayoutTableRow(Element*);
@@ -50,7 +50,7 @@ public:
static LayoutTableRow* createAnonymous(Document*);
static LayoutTableRow* createAnonymousWithParentRenderer(const LayoutObject*);
- virtual RenderBox* createAnonymousBoxWithSameTypeAs(const LayoutObject* parent) const override
+ virtual LayoutBox* createAnonymousBoxWithSameTypeAs(const LayoutObject* parent) const override
{
return createAnonymousWithParentRenderer(parent);
}
@@ -100,7 +100,7 @@ private:
virtual const char* renderName() const override { return (isAnonymous() || isPseudoElement()) ? "LayoutTableRow (anonymous)" : "LayoutTableRow"; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTableRow || RenderBox::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTableRow || LayoutBox::isOfType(type); }
virtual void willBeRemovedFromTree() override;
« no previous file with comments | « Source/core/layout/LayoutTableCol.cpp ('k') | Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698