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

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

Issue 2660423004: Rename EOverflow values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 11 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/GridTrackSizingAlgorithm.cpp
diff --git a/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp b/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
index 7927dbe4771369b8049c3a08b38ead8cbcd574bf..cf41414466b10852dfa7063396d2510762f4ffb4 100644
--- a/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
+++ b/third_party/WebKit/Source/core/layout/GridTrackSizingAlgorithm.cpp
@@ -374,8 +374,8 @@ LayoutUnit GridTrackSizingAlgorithmStrategy::minSizeForChild(
: child.styleRef().logicalMinHeight();
bool overflowIsVisible =
isRowAxis
- ? child.styleRef().overflowInlineDirection() == EOverflow::Visible
- : child.styleRef().overflowBlockDirection() == EOverflow::Visible;
+ ? child.styleRef().overflowInlineDirection() == EOverflow::kVisible
+ : child.styleRef().overflowBlockDirection() == EOverflow::kVisible;
if (!childSize.isAuto() || (childMinSize.isAuto() && overflowIsVisible))
return minContentForChild(child);
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698