| Index: third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
|
| index b4d6f9691351546e0fd9d80ae5d8f96375d74c37..d6a3677ed43dae050411d63063105b11b7be6339 100644
|
| --- a/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/PaintPropertyFunctions.cpp
|
| @@ -36,7 +36,7 @@ bool PaintPropertyFunctions::getColor(CSSPropertyID property, const ComputedStyl
|
| case CSSPropertyStroke:
|
| return getColorFromPaint(style.svgStyle().strokePaintType(), style.svgStyle().strokePaintColor(), result);
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return false;
|
| }
|
| }
|
| @@ -51,7 +51,7 @@ void PaintPropertyFunctions::setColor(CSSPropertyID property, ComputedStyle& sty
|
| style.accessSVGStyle().setStrokePaint(SVG_PAINTTYPE_RGBCOLOR, color, String(), true, true);
|
| break;
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
| }
|
|
|
|
|