Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
index bb76db8880c8a47edcd6a4e71a05fa5b465ebf7a..c36727a6c5d23204a4e7c05fc4ee46040f8f8b7f 100644 |
--- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
+++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
@@ -91,11 +91,11 @@ V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptExecu |
: CustomElementLifecycleCallbacks(flagSet(enteredView, leftView, attributeChanged)) |
, ActiveDOMCallback(scriptExecutionContext) |
, m_world(DOMWrapperWorld::current()) |
- , m_prototype(prototype) |
- , m_created(created) |
- , m_enteredView(enteredView) |
- , m_leftView(leftView) |
- , m_attributeChanged(attributeChanged) |
+ , m_prototype(isolateForScriptExecutionContext(scriptExecutionContext), prototype) |
+ , m_created(isolateForScriptExecutionContext(scriptExecutionContext), created) |
+ , m_enteredView(isolateForScriptExecutionContext(scriptExecutionContext), enteredView) |
+ , m_leftView(isolateForScriptExecutionContext(scriptExecutionContext), leftView) |
+ , m_attributeChanged(isolateForScriptExecutionContext(scriptExecutionContext), attributeChanged) |
, m_owner(0) |
{ |
m_prototype.makeWeak(&m_prototype, weakCallback<v8::Object>); |