| Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| index da3c689eb279b90f9eaf8e78a50e8e219029dc6c..0fae0d9d22c4b7f8c66b7dacb67d3990bb892da5 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| @@ -2153,7 +2153,7 @@ bool LayoutBox::isBreakBetweenControllable(EBreakBetween breakValue) const {
|
| return false;
|
| curr = curr->containingBlock();
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
|
|
| @@ -2226,7 +2226,7 @@ static inline int fragmentainerBreakPrecedence(EBreakBetween breakValue) {
|
|
|
| switch (breakValue) {
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| // fall-through
|
| case EBreakBetween::kAuto:
|
| return 0;
|
| @@ -2682,7 +2682,7 @@ LayoutUnit LayoutBox::computeIntrinsicLogicalWidthUsing(
|
| std::min(maxLogicalWidth, fillAvailableMeasure(availableLogicalWidth)));
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -3159,7 +3159,7 @@ LayoutUnit LayoutBox::computeIntrinsicLogicalContentHeightUsing(
|
| return containingBlock()->availableLogicalHeight(
|
| ExcludeMarginBorderPadding) -
|
| borderAndPadding;
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -3379,7 +3379,7 @@ LayoutUnit LayoutBox::computeReplacedLogicalWidthUsing(
|
| break;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
|
|