| 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 9a074fa73dc3324ba23bfe504b34ac13fc40521c..a3b7e867a42c96212aaf748004667067122ad065 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| @@ -2156,7 +2156,7 @@ bool LayoutBox::isBreakBetweenControllable(EBreakBetween breakValue) const {
|
| return false;
|
| curr = curr->containingBlock();
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
|
|
| @@ -2229,7 +2229,7 @@ static inline int fragmentainerBreakPrecedence(EBreakBetween breakValue) {
|
|
|
| switch (breakValue) {
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| // fall-through
|
| case EBreakBetween::kAuto:
|
| return 0;
|
| @@ -2685,7 +2685,7 @@ LayoutUnit LayoutBox::computeIntrinsicLogicalWidthUsing(
|
| std::min(maxLogicalWidth, fillAvailableMeasure(availableLogicalWidth)));
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -3162,7 +3162,7 @@ LayoutUnit LayoutBox::computeIntrinsicLogicalContentHeightUsing(
|
| return containingBlock()->availableLogicalHeight(
|
| ExcludeMarginBorderPadding) -
|
| borderAndPadding;
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -3382,7 +3382,7 @@ LayoutUnit LayoutBox::computeReplacedLogicalWidthUsing(
|
| break;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
|
|