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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/RequestInit.h

Issue 2691513002: Fetch: Make Headers' constructor match the current spec IDL. (Closed)
Patch Set: Rebase after the Blink Rename Created 3 years, 8 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 // 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"
yhirano 2017/04/11 03:32:41 Not needed.
Raphael Kubo da Costa (rakuco) 2017/04/11 08:02:21 Done.
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/RefPtr.h" 12 #include "wtf/RefPtr.h"
13 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
14 #include <memory> 14 #include <memory>
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class BytesConsumer; 18 class BytesConsumer;
19 class ExceptionState; 19 class ExceptionState;
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 25
26 public: 26 public:
27 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&); 27 explicit RequestInit(ExecutionContext*, const Dictionary&, ExceptionState&);
28 28
29 String method; 29 String method;
30 Member<Headers> headers; 30 Member<Headers> headers;
31 Dictionary headers_dictionary;
32 String content_type; 31 String content_type;
33 Member<BytesConsumer> body; 32 Member<BytesConsumer> body;
34 Referrer referrer; 33 Referrer referrer;
35 String mode; 34 String mode;
36 String credentials; 35 String credentials;
37 String redirect; 36 String redirect;
38 String integrity; 37 String integrity;
39 RefPtr<EncodedFormData> attached_credential; 38 RefPtr<EncodedFormData> attached_credential;
40 // 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
41 // should be used in the Request constructor. 40 // should be used in the Request constructor.
42 bool are_any_members_set; 41 bool are_any_members_set;
43 }; 42 };
44 43
45 } // namespace blink 44 } // namespace blink
46 45
47 #endif // RequestInit_h 46 #endif // RequestInit_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698