| Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| index cfbeae94cffe846d35f55b189e36f21ecacd8be2..e41fcf817a8203b5f30ff46d9b332f3fcb2ef371 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| @@ -43,15 +43,15 @@ void AdjustToClearance(const NGConstraintSpace& space,
|
| right_exclusion ? right_exclusion->rect.BlockEndOffset() : *content_size;
|
|
|
| switch (style.clear()) {
|
| - case EClear::ClearNone:
|
| + case EClear::kNone:
|
| return; // nothing to do here.
|
| - case EClear::ClearLeft:
|
| + case EClear::kLeft:
|
| *content_size = left_block_end_offset;
|
| break;
|
| - case EClear::ClearRight:
|
| + case EClear::kRight:
|
| *content_size = right_block_end_offset;
|
| break;
|
| - case EClear::ClearBoth:
|
| + case EClear::kBoth:
|
| *content_size = std::max(left_block_end_offset, right_block_end_offset);
|
| break;
|
| default:
|
|
|