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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp

Issue 2569013006: Changed EOverflow to an enum class and renamed its members (Closed)
Patch Set: Rebase Created 4 years 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/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index bf095167bf4de5c5e7f678fe2478021ef6c4499d..8dcca0a81c772ca7f1b358e2a7b3f5b04d171348 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -1114,8 +1114,9 @@ static bool shouldFlexCellChild(LayoutObject* cellDescendant) {
return cellDescendant->isAtomicInlineLevel() ||
(cellDescendant->isBox() &&
toLayoutBox(cellDescendant)->style()->overflowY() !=
- OverflowVisible &&
- toLayoutBox(cellDescendant)->style()->overflowY() != OverflowHidden);
+ EOverflow::Visible &&
+ toLayoutBox(cellDescendant)->style()->overflowY() !=
+ EOverflow::Hidden);
}
void LayoutTableSection::layoutRows() {
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutGrid.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTextControl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698