| Index: third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp b/third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp
|
| index 8f7c47a67d644e609ce507c553eb6b29a4343b96..ea053da403cf4d8b32137d2a0be8ef39f76f2d37 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp
|
| @@ -388,7 +388,7 @@ float SVGAnimationElement::calculatePercentForSpline(
|
| float percent,
|
| unsigned splineIndex) const {
|
| ASSERT(getCalcMode() == CalcModeSpline);
|
| - ASSERT_WITH_SECURITY_IMPLICATION(splineIndex < m_keySplines.size());
|
| + SECURITY_DCHECK(splineIndex < m_keySplines.size());
|
| gfx::CubicBezier bezier = m_keySplines[splineIndex];
|
| SMILTime duration = simpleDuration();
|
| if (!duration.isFinite())
|
|
|