Index: third_party/WebKit/Source/platform/heap/HeapLinkedStack.h |
diff --git a/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h b/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h |
index 090e4669af68b1aa160d50fd9e3cc7a83494ed35..c207cf9b26a5ce0b5d271ef01c5f7b5676fbb5a0 100644 |
--- a/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h |
+++ b/third_party/WebKit/Source/platform/heap/HeapLinkedStack.h |
@@ -98,7 +98,8 @@ inline const T& HeapLinkedStack<T>::Peek() { |
template <typename T> |
inline void HeapLinkedStack<T>::Pop() { |
- ASSERT(head_ && size_); |
+ DCHECK(head_); |
+ DCHECK(size_); |
head_ = head_->next_; |
--size_; |
} |