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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc

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/ng/ng_constraint_space.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
index d52d2252dfc340107bff9d75ab1c901ed0de6b52..52dde27b0a7a8314b1a823a60a65250177c03b04 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
@@ -73,9 +73,9 @@ NGConstraintSpace* NGConstraintSpace::CreateFromLayoutObject(
.SetAvailableSize(size)
.SetPercentageResolutionSize(size)
.SetIsInlineDirectionTriggersScrollbar(
- box.styleRef().overflowInlineDirection() == OverflowAuto)
+ box.styleRef().overflowInlineDirection() == EOverflow::Auto)
.SetIsBlockDirectionTriggersScrollbar(
- box.styleRef().overflowBlockDirection() == OverflowAuto)
+ box.styleRef().overflowBlockDirection() == EOverflow::Auto)
.SetIsFixedSizeInline(fixed_inline)
.SetIsFixedSizeBlock(fixed_block)
.SetIsNewFormattingContext(is_new_fc)
« no previous file with comments | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | third_party/WebKit/Source/core/layout/svg/LayoutSVGRoot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698