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

Unified Diff: Source/core/rendering/RenderTableCol.h

Issue 620753006: Rendering API cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 6 years, 2 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/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableSection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTableCol.h
diff --git a/Source/core/rendering/RenderTableCol.h b/Source/core/rendering/RenderTableCol.h
index 2cb1bbc84ffb019a133e914dd33bc7942092ce2d..92f8409d109e32673c2c4c106555e5678031755d 100644
--- a/Source/core/rendering/RenderTableCol.h
+++ b/Source/core/rendering/RenderTableCol.h
@@ -39,7 +39,6 @@ public:
virtual void trace(Visitor*) OVERRIDE;
RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
- RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
// If you have a RenderTableCol, use firstChild or lastChild instead.
void slowFirstChild() const WTF_DELETED_FUNCTION;
@@ -51,7 +50,6 @@ public:
void clearPreferredLogicalWidthsDirtyBits();
unsigned span() const { return m_span; }
- void setSpan(unsigned span) { m_span = span; }
bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
bool isTableColumn() const { return style()->display() == TABLE_COLUMN; }
« no previous file with comments | « Source/core/rendering/RenderTable.h ('k') | Source/core/rendering/RenderTableSection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698