Index: third_party/WebKit/Source/core/style/CounterDirectives.h |
diff --git a/third_party/WebKit/Source/core/style/CounterDirectives.h b/third_party/WebKit/Source/core/style/CounterDirectives.h |
index 1529b955ee7aaa0b991c2ce80f6809df6d3f7627..631d9eb8833ca8b93a6a4cc990c5a824a577bd13 100644 |
--- a/third_party/WebKit/Source/core/style/CounterDirectives.h |
+++ b/third_party/WebKit/Source/core/style/CounterDirectives.h |
@@ -81,8 +81,8 @@ class CounterDirectives { |
bool isDefined() const { return isReset() || isIncrement(); } |
int combinedValue() const { |
- ASSERT(m_isResetSet || !m_resetValue); |
- ASSERT(m_isIncrementSet || !m_incrementValue); |
+ DCHECK(m_isResetSet || !m_resetValue); |
+ DCHECK(m_isIncrementSet || !m_incrementValue); |
// FIXME: Shouldn't allow overflow here. |
return m_resetValue + m_incrementValue; |
} |