Index: third_party/WebKit/Source/bindings/core/v8/V8EventListener.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8EventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8EventListener.cpp |
index 508f87e43352ebb0e20c28e5608847c514b65d37..e360b1051f0f89883e618d64e50bcc84b36799de 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/V8EventListener.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/V8EventListener.cpp |
@@ -89,7 +89,7 @@ v8::Local<v8::Value> V8EventListener::CallListenerFunction( |
ScriptState* script_state, |
v8::Local<v8::Value> js_event, |
Event* event) { |
- ASSERT(!js_event.IsEmpty()); |
+ DCHECK(!js_event.IsEmpty()); |
v8::Local<v8::Function> handler_function = GetListenerFunction(script_state); |
v8::Local<v8::Object> receiver = GetReceiverObject(script_state, event); |
if (handler_function.IsEmpty() || receiver.IsEmpty()) |