| Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp
|
| diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp
|
| index 1c3e3c83b9117aca9347033be2908928682e2d2d..f80a7aa78d9151b8f2985c76d4e37cb83173fb5e 100644
|
| --- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp
|
| +++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp
|
| @@ -184,7 +184,7 @@ void V8CustomElementLifecycleCallbacks::created(Element* element)
|
|
|
| v8::TryCatch exceptionCatcher;
|
| exceptionCatcher.SetVerbose(true);
|
| - ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0, isolate);
|
| + ScriptController::callFunction(scriptExecutionContext(), callback, receiver, 0, 0, isolate);
|
| }
|
|
|
| void V8CustomElementLifecycleCallbacks::enteredView(Element* element)
|
| @@ -225,7 +225,7 @@ void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const
|
|
|
| v8::TryCatch exceptionCatcher;
|
| exceptionCatcher.SetVerbose(true);
|
| - ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv, isolate);
|
| + ScriptController::callFunction(scriptExecutionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv, isolate);
|
| }
|
|
|
| void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function>& weakCallback, Element* element)
|
| @@ -250,7 +250,7 @@ void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function
|
|
|
| v8::TryCatch exceptionCatcher;
|
| exceptionCatcher.SetVerbose(true);
|
| - ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0, isolate);
|
| + ScriptController::callFunction(scriptExecutionContext(), callback, receiver, 0, 0, isolate);
|
| }
|
|
|
| } // namespace WebCore
|
|
|