| Index: Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp b/Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp
|
| index e7cd5113f18af1f6226e3505220c04ef3ec06098..883fb9f3e84237435e8dfef860aeb23180145da8 100644
|
| --- a/Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp
|
| @@ -66,7 +66,7 @@ void V8XMLHttpRequest::constructorCustom(const v8::FunctionCallbackInfo<v8::Valu
|
| RefPtrWillBeRawPtr<XMLHttpRequest> xmlHttpRequest = XMLHttpRequest::create(context, securityOrigin);
|
|
|
| v8::Handle<v8::Object> wrapper = info.Holder();
|
| - xmlHttpRequest->associateWithWrapper(xmlHttpRequest->wrapperTypeInfo(), wrapper, info.GetIsolate());
|
| + xmlHttpRequest->associateWithWrapper(info.GetIsolate(), xmlHttpRequest->wrapperTypeInfo(), wrapper);
|
| info.GetReturnValue().Set(wrapper);
|
| }
|
|
|
|
|