| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "V8DOMFormData.h" | 32 #include "V8FormData.h" |
| 33 | 33 |
| 34 #include "V8Blob.h" | 34 #include "V8Blob.h" |
| 35 #include "V8HTMLFormElement.h" | 35 #include "V8HTMLFormElement.h" |
| 36 #include "bindings/v8/V8Binding.h" | 36 #include "bindings/v8/V8Binding.h" |
| 37 #include "bindings/v8/V8Utilities.h" | 37 #include "bindings/v8/V8Utilities.h" |
| 38 #include "core/html/DOMFormData.h" | 38 #include "core/html/DOMFormData.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 v8::Handle<v8::Value> V8DOMFormData::constructorCustom(const v8::Arguments& args
) | 42 v8::Handle<v8::Value> V8FormData::constructorCustom(const v8::Arguments& args) |
| 43 { | 43 { |
| 44 HTMLFormElement* form = 0; | 44 HTMLFormElement* form = 0; |
| 45 if (args.Length() > 0 && V8HTMLFormElement::HasInstance(args[0], args.GetIso
late(), worldType(args.GetIsolate()))) | 45 if (args.Length() > 0 && V8HTMLFormElement::HasInstance(args[0], args.GetIso
late(), worldType(args.GetIsolate()))) |
| 46 form = V8HTMLFormElement::toNative(args[0]->ToObject()); | 46 form = V8HTMLFormElement::toNative(args[0]->ToObject()); |
| 47 RefPtr<DOMFormData> domFormData = DOMFormData::create(form); | 47 RefPtr<DOMFormData> domFormData = DOMFormData::create(form); |
| 48 | 48 |
| 49 v8::Handle<v8::Object> wrapper = args.Holder(); | 49 v8::Handle<v8::Object> wrapper = args.Holder(); |
| 50 V8DOMWrapper::associateObjectWithWrapper(domFormData.release(), &info, wrapp
er, args.GetIsolate(), WrapperConfiguration::Dependent); | 50 V8DOMWrapper::associateObjectWithWrapper(domFormData.release(), &info, wrapp
er, args.GetIsolate(), WrapperConfiguration::Dependent); |
| 51 return wrapper; | 51 return wrapper; |
| 52 } | 52 } |
| 53 | 53 |
| 54 v8::Handle<v8::Value> V8DOMFormData::appendMethodCustom(const v8::Arguments& arg
s) | 54 v8::Handle<v8::Value> V8FormData::appendMethodCustom(const v8::Arguments& args) |
| 55 { | 55 { |
| 56 if (args.Length() < 2) | 56 if (args.Length() < 2) |
| 57 return throwError(v8SyntaxError, "Not enough arguments", args.GetIsolate
()); | 57 return throwError(v8SyntaxError, "Not enough arguments", args.GetIsolate
()); |
| 58 | 58 |
| 59 DOMFormData* domFormData = V8DOMFormData::toNative(args.Holder()); | 59 DOMFormData* domFormData = V8FormData::toNative(args.Holder()); |
| 60 | 60 |
| 61 String name = toWebCoreStringWithNullCheck(args[0]); | 61 String name = toWebCoreStringWithNullCheck(args[0]); |
| 62 | 62 |
| 63 v8::Handle<v8::Value> arg = args[1]; | 63 v8::Handle<v8::Value> arg = args[1]; |
| 64 if (V8Blob::HasInstance(arg, args.GetIsolate(), worldType(args.GetIsolate())
)) { | 64 if (V8Blob::HasInstance(arg, args.GetIsolate(), worldType(args.GetIsolate())
)) { |
| 65 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); | 65 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); |
| 66 Blob* blob = V8Blob::toNative(object); | 66 Blob* blob = V8Blob::toNative(object); |
| 67 ASSERT(blob); | 67 ASSERT(blob); |
| 68 | 68 |
| 69 String filename; | 69 String filename; |
| 70 if (args.Length() >= 3 && !args[2]->IsUndefined()) | 70 if (args.Length() >= 3 && !args[2]->IsUndefined()) |
| 71 filename = toWebCoreStringWithNullCheck(args[2]); | 71 filename = toWebCoreStringWithNullCheck(args[2]); |
| 72 | 72 |
| 73 domFormData->append(name, blob, filename); | 73 domFormData->append(name, blob, filename); |
| 74 } else | 74 } else |
| 75 domFormData->append(name, toWebCoreStringWithNullCheck(arg)); | 75 domFormData->append(name, toWebCoreStringWithNullCheck(arg)); |
| 76 | 76 |
| 77 return v8::Undefined(); | 77 return v8::Undefined(); |
| 78 } | 78 } |
| 79 | 79 |
| 80 } // namespace WebCore | 80 } // namespace WebCore |
| OLD | NEW |