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

Unified Diff: Source/core/layout/LayoutTableCol.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/LayoutTableCell.cpp ('k') | Source/core/layout/LayoutTableCol.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutTableCol.h
diff --git a/Source/core/layout/LayoutTableCol.h b/Source/core/layout/LayoutTableCol.h
index f7ce16a298ad2399599d466c922f1cea92ae0d45..25b38ddb6d686961f198465e1b47de5e0cba7a76 100644
--- a/Source/core/layout/LayoutTableCol.h
+++ b/Source/core/layout/LayoutTableCol.h
@@ -26,14 +26,14 @@
#ifndef LayoutTableCol_h
#define LayoutTableCol_h
-#include "core/rendering/RenderBox.h"
+#include "core/layout/LayoutBox.h"
namespace blink {
class LayoutTable;
class LayoutTableCell;
-class LayoutTableCol final : public RenderBox {
+class LayoutTableCol final : public LayoutBox {
public:
explicit LayoutTableCol(Element*);
@@ -83,7 +83,7 @@ private:
virtual const LayoutObjectChildList* virtualChildren() const override { return children(); }
virtual const char* renderName() const override { return "LayoutTableCol"; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutTableCol || RenderBox::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectLayoutTableCol || LayoutBox::isOfType(type); }
virtual void updateFromElement() override;
virtual void computePreferredLogicalWidths() override { ASSERT_NOT_REACHED(); }
« no previous file with comments | « Source/core/layout/LayoutTableCell.cpp ('k') | Source/core/layout/LayoutTableCol.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698