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" |
11 #include "bindings/core/v8/V8Binding.h" | 11 #include "bindings/core/v8/V8Binding.h" |
12 #include "bindings/core/v8/V8Blob.h" | 12 #include "bindings/core/v8/V8Blob.h" |
13 #include "bindings/core/v8/V8FormData.h" | 13 #include "bindings/core/v8/V8FormData.h" |
14 #include "core/fileapi/Blob.h" | 14 #include "core/fileapi/Blob.h" |
15 #include "modules/fetch/Headers.h" | 15 #include "modules/fetch/Headers.h" |
16 #include "platform/blob/BlobData.h" | 16 #include "platform/blob/BlobData.h" |
17 #include "platform/network/FormData.h" | 17 #include "platform/network/FormData.h" |
18 | 18 |
19 namespace blink { | 19 namespace blink { |
20 | 20 |
21 RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, E
xceptionState& exceptionState) | 21 RequestInit::RequestInit(ExecutionContext* context, const Dictionary& options, E
xceptionState& exceptionState) |
22 { | 22 { |
23 DictionaryHelper::get(options, "method", method); | 23 DictionaryHelper::get(options, "method", method); |
24 DictionaryHelper::get(options, "headers", headers); | 24 DictionaryHelper::get(options, "headers", headers); |
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 | 34 |
35 v8::Local<v8::Value> body; | 35 v8::Local<v8::Value> body; |
36 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() ||
body->IsNull()) | 36 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() ||
body->IsNull()) |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 blobData->appendText(stringValue, false); | 81 blobData->appendText(stringValue, false); |
82 blobData->setContentType("text/plain;charset=UTF-8"); | 82 blobData->setContentType("text/plain;charset=UTF-8"); |
83 } else { | 83 } else { |
84 return; | 84 return; |
85 } | 85 } |
86 const long long blobSize = blobData->length(); | 86 const long long blobSize = blobData->length(); |
87 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize); | 87 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize); |
88 } | 88 } |
89 | 89 |
90 } | 90 } |
OLD | NEW |