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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableCol.h

Issue 2370673002: Changed EDisplay to an enum class and renamed its members to be keywords (Closed)
Patch Set: Comment Created 4 years, 3 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
Index: third_party/WebKit/Source/core/layout/LayoutTableCol.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCol.h b/third_party/WebKit/Source/core/layout/LayoutTableCol.h
index 66cabbe7576885abe7123d669c5ab143d4dfb6f3..27e912369afe2f5ef4421df5b0972703dcead74a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableCol.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCol.h
@@ -68,8 +68,8 @@ public:
unsigned span() const { return m_span; }
bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
- bool isTableColumn() const { return style()->display() == TABLE_COLUMN; }
- bool isTableColumnGroup() const { return style()->display() == TABLE_COLUMN_GROUP; }
+ bool isTableColumn() const { return style()->display() == EDisplay::TableColumn; }
+ bool isTableColumnGroup() const { return style()->display() == EDisplay::TableColumnGroup; }
LayoutTableCol* enclosingColumnGroup() const;
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCell.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableCol.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698