 Chromium Code Reviews
 Chromium Code Reviews Issue 2755493004:
  Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/  (Closed)
    
  
    Issue 2755493004:
  Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/  (Closed) 
  | Index: third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| diff --git a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| index bf3f3eb6f2e12b4afc848b9901613147a301f841..0a26ac312ec4c40d05d1545e115714906bd3c9b7 100644 | 
| --- a/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| +++ b/third_party/WebKit/Source/core/css/CSSCustomPropertyDeclaration.h | 
| @@ -51,7 +51,7 @@ class CSSCustomPropertyDeclaration : public CSSValue { | 
| m_name(name), | 
| m_value(nullptr), | 
| m_valueId(id) { | 
| - ASSERT(id == CSSValueInherit || id == CSSValueInitial || | 
| + DCHECK(id == CSSValueInherit || id == CSSValueInitial || | 
| id == CSSValueUnset); | 
| } |