| Index: third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| index 9cef256ddbad31b5c92ea199f6aa4c92f00ff4b2..d97816e9b8c5b900599694276d4a6a41a7cf8e7e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutGrid.cpp
|
| @@ -438,7 +438,7 @@ LayoutUnit LayoutGrid::computeIntrinsicLogicalContentHeightUsing(
|
| return containingBlock()->availableLogicalHeight(
|
| ExcludeMarginBorderPadding) -
|
| borderAndPadding;
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -1377,7 +1377,7 @@ static LayoutUnit computeOverflowAlignmentOffset(OverflowAlignment overflow,
|
| return offset;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -1740,7 +1740,7 @@ GridAxisPosition LayoutGrid::columnAxisPositionForChild(
|
| break;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return GridAxisStart;
|
| }
|
|
|
| @@ -1819,7 +1819,7 @@ GridAxisPosition LayoutGrid::rowAxisPositionForChild(
|
| break;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return GridAxisStart;
|
| }
|
|
|
| @@ -1861,7 +1861,7 @@ LayoutUnit LayoutGrid::columnAxisOffsetForChild(const LayoutBox& child) const {
|
| }
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -1903,7 +1903,7 @@ LayoutUnit LayoutGrid::rowAxisOffsetForChild(const LayoutBox& child) const {
|
| }
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return LayoutUnit();
|
| }
|
|
|
| @@ -1922,7 +1922,7 @@ ContentPosition static resolveContentDistributionFallback(
|
| return ContentPositionNormal;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return ContentPositionNormal;
|
| }
|
|
|
| @@ -1957,7 +1957,7 @@ static ContentAlignmentData contentDistributionOffset(
|
| return {};
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return {};
|
| }
|
|
|
| @@ -2033,7 +2033,7 @@ ContentAlignmentData LayoutGrid::computeContentPositionAndDistributionOffset(
|
| break;
|
| }
|
|
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return {LayoutUnit(), LayoutUnit()};
|
| }
|
|
|
|
|