Index: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h |
diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h |
index d2cf256fe4734a03c42380aad2df8845bb6fb6c5..6fcabe26a7da11a69967b8a4f56f6e226d6517a7 100644 |
--- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h |
+++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h |
@@ -39,7 +39,7 @@ class CSSGridAutoRepeatValue : public CSSValueList { |
private: |
CSSGridAutoRepeatValue(CSSValueID id) |
: CSSValueList(GridAutoRepeatClass, SpaceSeparator), m_autoRepeatID(id) { |
- ASSERT(id == CSSValueAutoFill || id == CSSValueAutoFit); |
+ DCHECK(id == CSSValueAutoFill || id == CSSValueAutoFit); |
} |
const CSSValueID m_autoRepeatID; |