OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "modules/fetch/RequestInit.h" | 6 #include "modules/fetch/RequestInit.h" |
7 | 7 |
8 #include "bindings/core/v8/Dictionary.h" | 8 #include "bindings/core/v8/Dictionary.h" |
9 #include "bindings/core/v8/V8ArrayBuffer.h" | 9 #include "bindings/core/v8/V8ArrayBuffer.h" |
10 #include "bindings/core/v8/V8ArrayBufferView.h" | 10 #include "bindings/core/v8/V8ArrayBufferView.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 if (!headers) { | 25 if (!headers) { |
26 Vector<Vector<String>> headersVector; | 26 Vector<Vector<String>> headersVector; |
27 if (DictionaryHelper::get(options, "headers", headersVector, exceptionSt
ate)) | 27 if (DictionaryHelper::get(options, "headers", headersVector, exceptionSt
ate)) |
28 headers = Headers::create(headersVector, exceptionState); | 28 headers = Headers::create(headersVector, exceptionState); |
29 else | 29 else |
30 DictionaryHelper::get(options, "headers", headersDictionary); | 30 DictionaryHelper::get(options, "headers", headersDictionary); |
31 } | 31 } |
32 DictionaryHelper::get(options, "mode", mode); | 32 DictionaryHelper::get(options, "mode", mode); |
33 DictionaryHelper::get(options, "credentials", credentials); | 33 DictionaryHelper::get(options, "credentials", credentials); |
34 DictionaryHelper::get(options, "redirect", redirect); | 34 DictionaryHelper::get(options, "redirect", redirect); |
| 35 DictionaryHelper::get(options, "integrity", integrity); |
35 | 36 |
36 v8::Local<v8::Value> body; | 37 v8::Local<v8::Value> body; |
37 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() ||
body->IsNull()) | 38 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() ||
body->IsNull()) |
38 return; | 39 return; |
39 OwnPtr<BlobData> blobData = BlobData::create(); | 40 OwnPtr<BlobData> blobData = BlobData::create(); |
40 v8::Isolate* isolate = toIsolate(context); | 41 v8::Isolate* isolate = toIsolate(context); |
41 if (body->IsArrayBuffer()) { | 42 if (body->IsArrayBuffer()) { |
42 DOMArrayBuffer* arrayBuffer = V8ArrayBuffer::toImpl(v8::Local<v8::Object
>::Cast(body)); | 43 DOMArrayBuffer* arrayBuffer = V8ArrayBuffer::toImpl(v8::Local<v8::Object
>::Cast(body)); |
43 ASSERT(arrayBuffer); | 44 ASSERT(arrayBuffer); |
44 blobData->appendBytes(arrayBuffer->data(), arrayBuffer->byteLength()); | 45 blobData->appendBytes(arrayBuffer->data(), arrayBuffer->byteLength()); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 blobData->appendText(stringValue, false); | 83 blobData->appendText(stringValue, false); |
83 blobData->setContentType("text/plain;charset=UTF-8"); | 84 blobData->setContentType("text/plain;charset=UTF-8"); |
84 } else { | 85 } else { |
85 return; | 86 return; |
86 } | 87 } |
87 const long long blobSize = blobData->length(); | 88 const long long blobSize = blobData->length(); |
88 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize); | 89 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize); |
89 } | 90 } |
90 | 91 |
91 } | 92 } |
OLD | NEW |