| Index: third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| index 41779bb3e1c67d2d180272b2c60aaf6355095888..969acebd627b9db14e3443805e614b855eb151b6 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| @@ -328,7 +328,7 @@ void CSSPrimitiveValue::accumulateLengthArray(CSSLengthArray& lengthArray,
|
|
|
| LengthUnitType lengthType;
|
| bool conversionSuccess = unitTypeToLengthUnitType(type(), lengthType);
|
| - ASSERT_UNUSED(conversionSuccess, conversionSuccess);
|
| + DCHECK(conversionSuccess);
|
| lengthArray.values[lengthType] +=
|
| m_value.num * conversionToCanonicalUnitsScaleFactor(type()) * multiplier;
|
| lengthArray.typeFlags.set(lengthType);
|
|
|