| Index: Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| diff --git a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| index 0378d4949ed591e434605e9267381e410f00e3c8..6fb317453ce3262d3d2b8eccf37f09b648bd16e8 100644
|
| --- a/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| +++ b/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| @@ -78,12 +78,9 @@ v8::Local<v8::Value> V8WorkerGlobalScopeEventListener::callListenerFunction(Scri
|
| if (handlerFunction.IsEmpty() || receiver.IsEmpty())
|
| return v8::Local<v8::Value>();
|
|
|
| - InspectorInstrumentationCookie cookie = InspectorInstrumentation::willCallFunction(scriptState->executionContext(), DevToolsFunctionInfo(handlerFunction));
|
| -
|
| v8::Local<v8::Value> parameters[1] = { jsEvent };
|
| v8::MaybeLocal<v8::Value> maybeResult = V8ScriptRunner::callFunction(handlerFunction, scriptState->executionContext(), receiver, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
|
|
|
| - InspectorInstrumentation::didCallFunction(cookie);
|
| TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "UpdateCounters", TRACE_EVENT_SCOPE_THREAD, "data", InspectorUpdateCountersEvent::data());
|
|
|
| v8::Local<v8::Value> result;
|
|
|