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

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

Issue 2670643004: Rename EDisplay values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 9 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 c8d0bd874c056fe8d30d7706c85500260a554943..a6244de4e5625d872014885a8752022c1d02a289 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableCol.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCol.h
@@ -69,10 +69,10 @@ class LayoutTableCol final : public LayoutTableBoxComponent {
bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
bool isTableColumn() const {
- return style()->display() == EDisplay::TableColumn;
+ return style()->display() == EDisplay::kTableColumn;
}
bool isTableColumnGroup() const {
- return style()->display() == EDisplay::TableColumnGroup;
+ return style()->display() == EDisplay::kTableColumnGroup;
}
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