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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. 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 FetchRequestData_h 5 #ifndef FetchRequestData_h
6 #define FetchRequestData_h 6 #define FetchRequestData_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "platform/network/EncodedFormData.h" 9 #include "platform/network/EncodedFormData.h"
10 #include "platform/weborigin/KURL.h" 10 #include "platform/weborigin/KURL.h"
11 #include "platform/weborigin/Referrer.h" 11 #include "platform/weborigin/Referrer.h"
12 #include "platform/weborigin/ReferrerPolicy.h" 12 #include "platform/weborigin/ReferrerPolicy.h"
13 #include "platform/wtf/PassRefPtr.h"
14 #include "platform/wtf/text/AtomicString.h"
15 #include "platform/wtf/text/WTFString.h"
13 #include "public/platform/WebURLRequest.h" 16 #include "public/platform/WebURLRequest.h"
14 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" 17 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
15 #include "wtf/PassRefPtr.h"
16 #include "wtf/text/AtomicString.h"
17 #include "wtf/text/WTFString.h"
18 18
19 namespace blink { 19 namespace blink {
20 20
21 class BodyStreamBuffer; 21 class BodyStreamBuffer;
22 class FetchHeaderList; 22 class FetchHeaderList;
23 class SecurityOrigin; 23 class SecurityOrigin;
24 class ScriptState; 24 class ScriptState;
25 class WebServiceWorkerRequest; 25 class WebServiceWorkerRequest;
26 26
27 class FetchRequestData final 27 class FetchRequestData final
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 Tainting response_tainting_; 126 Tainting response_tainting_;
127 Member<BodyStreamBuffer> buffer_; 127 Member<BodyStreamBuffer> buffer_;
128 String mime_type_; 128 String mime_type_;
129 String integrity_; 129 String integrity_;
130 RefPtr<EncodedFormData> attached_credential_; 130 RefPtr<EncodedFormData> attached_credential_;
131 }; 131 };
132 132
133 } // namespace blink 133 } // namespace blink
134 134
135 #endif // FetchRequestData_h 135 #endif // FetchRequestData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/fetch/FetchManager.cpp ('k') | third_party/WebKit/Source/modules/fetch/FetchResponseData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698