| Index: third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| index 47d19883aa5b8d5894c0d22336f0b4def495a4a3..b12ffaf59feed844e18a14ca169935c0687878d0 100644
|
| --- a/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/FilterInterpolationFunctions.cpp
|
| @@ -59,7 +59,7 @@ double defaultParameter(FilterOperation::OperationType type)
|
| return 0;
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0;
|
| }
|
| }
|
| @@ -82,7 +82,7 @@ double clampParameter(double value, FilterOperation::OperationType type)
|
| return value;
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return 0;
|
| }
|
| }
|
| @@ -140,7 +140,7 @@ InterpolationValue FilterInterpolationFunctions::maybeConvertCSSFilter(const CSS
|
| return nullptr;
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
|
|
| @@ -185,7 +185,7 @@ InterpolationValue FilterInterpolationFunctions::maybeConvertFilter(const Filter
|
| return nullptr;
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
|
|
| @@ -218,7 +218,7 @@ std::unique_ptr<InterpolableValue> FilterInterpolationFunctions::createNoneValue
|
| return ShadowInterpolationFunctions::createNeutralInterpolableValue();
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
| }
|
| @@ -262,7 +262,7 @@ FilterOperation* FilterInterpolationFunctions::createFilter(const InterpolableVa
|
| }
|
|
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return nullptr;
|
| }
|
| }
|
|
|