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

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

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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 Request_h 5 #ifndef Request_h
6 #define Request_h 6 #define Request_h
7 7
8 #include "bindings/core/v8/Dictionary.h" 8 #include "bindings/core/v8/Dictionary.h"
9 #include "bindings/core/v8/ScriptWrappable.h"
10 #include "bindings/modules/v8/RequestOrUSVString.h" 9 #include "bindings/modules/v8/RequestOrUSVString.h"
11 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
12 #include "modules/fetch/Body.h" 11 #include "modules/fetch/Body.h"
13 #include "modules/fetch/FetchRequestData.h" 12 #include "modules/fetch/FetchRequestData.h"
14 #include "modules/fetch/Headers.h" 13 #include "modules/fetch/Headers.h"
14 #include "platform/bindings/ScriptWrappable.h"
15 #include "platform/heap/Handle.h" 15 #include "platform/heap/Handle.h"
16 #include "platform/network/EncodedFormData.h" 16 #include "platform/network/EncodedFormData.h"
17 #include "platform/weborigin/KURL.h" 17 #include "platform/weborigin/KURL.h"
18 #include "platform/wtf/text/WTFString.h" 18 #include "platform/wtf/text/WTFString.h"
19 #include "public/platform/WebURLRequest.h" 19 #include "public/platform/WebURLRequest.h"
20 20
21 namespace blink { 21 namespace blink {
22 22
23 class BodyStreamBuffer; 23 class BodyStreamBuffer;
24 class EncodedFormData; 24 class EncodedFormData;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 String MimeType() const override; 97 String MimeType() const override;
98 void RefreshBody(ScriptState*); 98 void RefreshBody(ScriptState*);
99 99
100 const Member<FetchRequestData> request_; 100 const Member<FetchRequestData> request_;
101 const Member<Headers> headers_; 101 const Member<Headers> headers_;
102 }; 102 };
103 103
104 } // namespace blink 104 } // namespace blink
105 105
106 #endif // Request_h 106 #endif // Request_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698