Index: third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp |
index a622f586786de48203780fa5dab9c61266e11411..ab70e1b09996d7bf3ff66481528e549fb3f80d3c 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp |
@@ -37,7 +37,7 @@ DispatchEventResult IDBEventDispatcher::Dispatch( |
Event* event, |
HeapVector<Member<EventTarget>>& event_targets) { |
size_t size = event_targets.size(); |
- ASSERT(size); |
+ DCHECK(size); |
event->SetEventPhase(Event::kCapturingPhase); |
for (size_t i = size - 1; i; --i) { // Don't do the first element. |