| 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 #ifndef RequestInit_h | 5 #ifndef RequestInit_h |
| 6 #define RequestInit_h | 6 #define RequestInit_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/Dictionary.h" | 8 #include "bindings/core/v8/Dictionary.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "platform/network/EncodedFormData.h" | 10 #include "platform/network/EncodedFormData.h" |
| 11 #include "platform/weborigin/Referrer.h" | 11 #include "platform/weborigin/Referrer.h" |
| 12 #include "wtf/OwnPtr.h" | |
| 13 #include "wtf/RefPtr.h" | 12 #include "wtf/RefPtr.h" |
| 14 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 14 #include <memory> |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class ExceptionState; | 18 class ExceptionState; |
| 19 class FetchDataConsumerHandle; | 19 class FetchDataConsumerHandle; |
| 20 class Headers; | 20 class Headers; |
| 21 | 21 |
| 22 // FIXME: Use IDL dictionary instead of this class. | 22 // FIXME: Use IDL dictionary instead of this class. |
| 23 class RequestInit { | 23 class RequestInit { |
| 24 STACK_ALLOCATED(); | 24 STACK_ALLOCATED(); |
| 25 public: | 25 public: |
| 26 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&); | 26 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&); |
| 27 | 27 |
| 28 String method; | 28 String method; |
| 29 Member<Headers> headers; | 29 Member<Headers> headers; |
| 30 Dictionary headersDictionary; | 30 Dictionary headersDictionary; |
| 31 String contentType; | 31 String contentType; |
| 32 OwnPtr<FetchDataConsumerHandle> body; | 32 std::unique_ptr<FetchDataConsumerHandle> body; |
| 33 Referrer referrer; | 33 Referrer referrer; |
| 34 String mode; | 34 String mode; |
| 35 String credentials; | 35 String credentials; |
| 36 String redirect; | 36 String redirect; |
| 37 String integrity; | 37 String integrity; |
| 38 RefPtr<EncodedFormData> attachedCredential; | 38 RefPtr<EncodedFormData> attachedCredential; |
| 39 // True if any members in RequestInit are set and hence the referrer member | 39 // True if any members in RequestInit are set and hence the referrer member |
| 40 // should be used in the Request constructor. | 40 // should be used in the Request constructor. |
| 41 bool areAnyMembersSet; | 41 bool areAnyMembersSet; |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 } // namespace blink | 44 } // namespace blink |
| 45 | 45 |
| 46 #endif // RequestInit_h | 46 #endif // RequestInit_h |
| OLD | NEW |