| Index: src/inspector/V8FunctionCall.cpp
|
| diff --git a/src/inspector/V8FunctionCall.cpp b/src/inspector/V8FunctionCall.cpp
|
| index 4f572d08bab027dd6c6eb4cdd5af6826b29c124d..d8ffffa02cda056edb16d7dfb0e16d0603de3960 100644
|
| --- a/src/inspector/V8FunctionCall.cpp
|
| +++ b/src/inspector/V8FunctionCall.cpp
|
| @@ -96,8 +96,8 @@
|
| }
|
| v8::MicrotasksScope microtasksScope(m_context->GetIsolate(),
|
| v8::MicrotasksScope::kDoNotRunMicrotasks);
|
| - v8::MaybeLocal<v8::Value> maybeResult = function->Call(
|
| - m_context, thisObject, static_cast<int>(m_arguments.size()), info.get());
|
| + v8::MaybeLocal<v8::Value> maybeResult =
|
| + function->Call(m_context, thisObject, m_arguments.size(), info.get());
|
| if (contextGroupId) {
|
| m_inspector->client()->unmuteMetrics(contextGroupId);
|
| m_inspector->unmuteExceptions(contextGroupId);
|
|
|