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

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

Issue 2811623002: Fetch API: Add Request#cache attribute (Closed)
Patch Set: address comments 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"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "platform/network/EncodedFormData.h" 10 #include "platform/network/EncodedFormData.h"
(...skipping 16 matching lines...) Expand all
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; 31 Dictionary headers_dictionary;
32 String content_type; 32 String content_type;
33 Member<BytesConsumer> body; 33 Member<BytesConsumer> body;
34 Referrer referrer; 34 Referrer referrer;
35 String mode; 35 String mode;
36 String credentials; 36 String credentials;
37 String cache;
37 String redirect; 38 String redirect;
38 String integrity; 39 String integrity;
39 RefPtr<EncodedFormData> attached_credential; 40 RefPtr<EncodedFormData> attached_credential;
40 // True if any members in RequestInit are set and hence the referrer member 41 // True if any members in RequestInit are set and hence the referrer member
41 // should be used in the Request constructor. 42 // should be used in the Request constructor.
42 bool are_any_members_set; 43 bool are_any_members_set;
43 }; 44 };
44 45
45 } // namespace blink 46 } // namespace blink
46 47
47 #endif // RequestInit_h 48 #endif // RequestInit_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/Request.idl ('k') | third_party/WebKit/Source/modules/fetch/RequestInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698