Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: Source/bindings/v8/custom/V8BlobCustom.cpp

Issue 19230002: Use V8 implementation of TypedArrays and DataView in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased for relanding Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8ArrayBufferViewCustom.cpp ('k') | Source/bindings/v8/custom/V8CryptoCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698