| 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 82832742f97dde4e3be647c5154a6a049139a0d4..2eef701ea6bdaeddc75be749f2fe783ea01eb9da 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.cpp
|
| @@ -192,8 +192,8 @@ CSSPrimitiveValue::UnitType CSSPrimitiveValue::typeWithCalcResolved() const
|
|
|
| static const AtomicString& valueName(CSSValueID valueID)
|
| {
|
| - ASSERT_ARG(valueID, valueID >= 0);
|
| - ASSERT_ARG(valueID, valueID < numCSSValueKeywords);
|
| + DCHECK_GE(valueID, 0);
|
| + DCHECK_LT(valueID, numCSSValueKeywords);
|
|
|
| if (valueID < 0)
|
| return nullAtom;
|
|
|