Index: Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp |
diff --git a/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp b/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp |
index b9100f16ac63abf68894db6f077371179339b0f5..6a4f778fadf4a1691d5f3b98edc15f9dc448ae5e 100644 |
--- a/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp |
+++ b/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp |
@@ -63,7 +63,7 @@ void V8MutationObserver::constructorCustom(const v8::FunctionCallbackInfo<v8::Va |
OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), wrapper, ScriptState::current(info.GetIsolate())); |
RefPtrWillBeRawPtr<MutationObserver> observer = MutationObserver::create(callback.release()); |
- V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(observer.release(), &wrapperTypeInfo, wrapper, info.GetIsolate()); |
+ V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(info.GetIsolate(), observer.release(), &wrapperTypeInfo, wrapper); |
info.GetReturnValue().Set(wrapper); |
} |