Index: third_party/WebKit/Source/wtf/HashCountedSet.h |
diff --git a/third_party/WebKit/Source/wtf/HashCountedSet.h b/third_party/WebKit/Source/wtf/HashCountedSet.h |
index 272fb9bc00ea70608dc24714c13d37f0654bcc63..1926967cc16b574bfd60639ca437f5bce3d27391 100644 |
--- a/third_party/WebKit/Source/wtf/HashCountedSet.h |
+++ b/third_party/WebKit/Source/wtf/HashCountedSet.h |
@@ -134,7 +134,7 @@ inline bool HashCountedSet<T, U, V, W>::remove(iterator it) { |
return false; |
unsigned oldVal = it->value; |
- ASSERT(oldVal); |
+ DCHECK(oldVal); |
unsigned newVal = oldVal - 1; |
if (newVal) { |
it->value = newVal; |