Index: Source/bindings/v8/custom/V8FormDataCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8FormDataCustom.cpp b/Source/bindings/v8/custom/V8FormDataCustom.cpp |
index e5bf129c8e7095dbda2d46da8581db4c20ca50db..81b9388f8eed9e7d679d29997c343b0e699a1cab 100644 |
--- a/Source/bindings/v8/custom/V8FormDataCustom.cpp |
+++ b/Source/bindings/v8/custom/V8FormDataCustom.cpp |
@@ -47,7 +47,7 @@ void V8FormData::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& ar |
RefPtr<DOMFormData> domFormData = DOMFormData::create(form); |
v8::Handle<v8::Object> wrapper = args.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper(domFormData.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
+ V8DOMWrapper::associateObjectWithWrapper<V8FormData>(domFormData.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
args.GetReturnValue().Set(wrapper); |
} |