Index: Source/bindings/v8/custom/V8FormDataCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8FormDataCustom.cpp b/Source/bindings/v8/custom/V8FormDataCustom.cpp |
index 2e15f1e9d4bd5e1b38e3bfafe875e3c54a14802a..dec1f9e3d4306917552d6c7d465cad926e33cc8c 100644 |
--- a/Source/bindings/v8/custom/V8FormDataCustom.cpp |
+++ b/Source/bindings/v8/custom/V8FormDataCustom.cpp |
@@ -39,18 +39,6 @@ |
namespace WebCore { |
-void V8FormData::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
-{ |
- HTMLFormElement* form = 0; |
- if (info.Length() > 0 && V8HTMLFormElement::HasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) |
- form = V8HTMLFormElement::toNative(info[0]->ToObject()); |
- RefPtr<DOMFormData> domFormData = DOMFormData::create(form); |
- |
- v8::Handle<v8::Object> wrapper = info.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper<V8FormData>(domFormData.release(), &wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent); |
- info.GetReturnValue().Set(wrapper); |
-} |
- |
void V8FormData::appendMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
if (info.Length() < 2) { |