OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 13 matching lines...) Expand all Loading... |
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 "core/fileapi/Blob.h" | 32 #include "core/fileapi/Blob.h" |
33 | 33 |
34 #include "V8ArrayBufferView.h" | |
35 #include "V8Blob.h" | 34 #include "V8Blob.h" |
36 #include "V8File.h" | 35 #include "V8File.h" |
37 #include "bindings/v8/Dictionary.h" | 36 #include "bindings/v8/Dictionary.h" |
38 #include "bindings/v8/V8Binding.h" | 37 #include "bindings/v8/V8Binding.h" |
39 #include "bindings/v8/V8Utilities.h" | 38 #include "bindings/v8/V8Utilities.h" |
40 #include "bindings/v8/custom/V8ArrayBufferCustom.h" | 39 #include "bindings/v8/custom/V8ArrayBufferCustom.h" |
| 40 #include "bindings/v8/custom/V8ArrayBufferViewCustom.h" |
41 #include "core/fileapi/BlobBuilder.h" | 41 #include "core/fileapi/BlobBuilder.h" |
42 #include "wtf/RefPtr.h" | 42 #include "wtf/RefPtr.h" |
43 | 43 |
44 namespace WebCore { | 44 namespace WebCore { |
45 | 45 |
46 v8::Handle<v8::Object> wrap(Blob* impl, v8::Handle<v8::Object> creationContext,
v8::Isolate* isolate) | 46 v8::Handle<v8::Object> wrap(Blob* impl, v8::Handle<v8::Object> creationContext,
v8::Isolate* isolate) |
47 { | 47 { |
48 ASSERT(impl); | 48 ASSERT(impl); |
49 if (impl->isFile()) | 49 if (impl->isFile()) |
50 return wrap(toFile(impl), creationContext, isolate); | 50 return wrap(toFile(impl), creationContext, isolate); |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 V8TRYCATCH_VOID(String, stringValue, toWebCoreString(item)); | 120 V8TRYCATCH_VOID(String, stringValue, toWebCoreString(item)); |
121 blobBuilder.append(stringValue, endings); | 121 blobBuilder.append(stringValue, endings); |
122 } | 122 } |
123 } | 123 } |
124 | 124 |
125 RefPtr<Blob> blob = blobBuilder.getBlob(type); | 125 RefPtr<Blob> blob = blobBuilder.getBlob(type); |
126 args.GetReturnValue().Set(toV8(blob.get(), args.Holder(), args.GetIsolate())
); | 126 args.GetReturnValue().Set(toV8(blob.get(), args.Holder(), args.GetIsolate())
); |
127 } | 127 } |
128 | 128 |
129 } // namespace WebCore | 129 } // namespace WebCore |
OLD | NEW |