Index: third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
index bd4f816e85df49cdb5ad4d28d48c30e9e4fb5900..129441b1509248d59977ef40cf11c76afc14706e 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
@@ -72,7 +72,7 @@ v8::Local<v8::Value> V8WorkerGlobalScopeEventListener::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()) |