Index: third_party/WebKit/Source/wtf/allocator/PartitionAllocator.h |
diff --git a/third_party/WebKit/Source/wtf/allocator/PartitionAllocator.h b/third_party/WebKit/Source/wtf/allocator/PartitionAllocator.h |
index a897c6b85b8ec924abffb9f8ab62bb36cab217ff..266cbaba96b0c917576f4f63b35429d150cc1825 100644 |
--- a/third_party/WebKit/Source/wtf/allocator/PartitionAllocator.h |
+++ b/third_party/WebKit/Source/wtf/allocator/PartitionAllocator.h |
@@ -128,7 +128,7 @@ WTF_EXPORT char* PartitionAllocator::allocateExpandedVectorBacking<char>( |
} \ |
void operator delete[](void* p) { Allocator::deleteArray(p); } \ |
void* operator new(size_t, NotNullTag, void* location) { \ |
- ASSERT(location); \ |
+ DCHECK(location); \ |
return location; \ |
} \ |
void* operator new(size_t, void* location) { return location; } \ |