Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
index 50b073da8a5bf7ba5fba7d916bc269e36ff86a37..2e0e2c08d281d82b00f0d1ddb321408224ab33bb 100644 |
--- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
+++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
@@ -183,7 +183,7 @@ void V8CustomElementLifecycleCallbacks::created(Element* element) |
v8::TryCatch exceptionCatcher; |
exceptionCatcher.SetVerbose(true); |
- ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0); |
+ ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0, isolate); |
} |
void V8CustomElementLifecycleCallbacks::enteredDocument(Element* element) |
@@ -224,7 +224,7 @@ void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const |
v8::TryCatch exceptionCatcher; |
exceptionCatcher.SetVerbose(true); |
- ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv); |
+ ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv, isolate); |
} |
void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function>& weakCallback, Element* element) |
@@ -249,7 +249,7 @@ void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function |
v8::TryCatch exceptionCatcher; |
exceptionCatcher.SetVerbose(true); |
- ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0); |
+ ScriptController::callFunctionWithInstrumentation(scriptExecutionContext(), callback, receiver, 0, 0, isolate); |
} |
} // namespace WebCore |