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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/FetchResponseData.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 FetchResponseData_h 5 #ifndef FetchResponseData_h
6 #define FetchResponseData_h 6 #define FetchResponseData_h
7 7
8 #include <memory>
8 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
9 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
10 #include "platform/loader/fetch/CrossOriginAccessControl.h" 11 #include "platform/loader/fetch/CrossOriginAccessControl.h"
11 #include "platform/weborigin/KURL.h" 12 #include "platform/weborigin/KURL.h"
13 #include "platform/wtf/PassRefPtr.h"
14 #include "platform/wtf/Vector.h"
15 #include "platform/wtf/text/AtomicString.h"
12 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" 16 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h"
13 #include "wtf/PassRefPtr.h"
14 #include "wtf/Vector.h"
15 #include "wtf/text/AtomicString.h"
16 #include <memory>
17 17
18 namespace blink { 18 namespace blink {
19 19
20 class BodyStreamBuffer; 20 class BodyStreamBuffer;
21 class FetchHeaderList; 21 class FetchHeaderList;
22 class ScriptState; 22 class ScriptState;
23 class WebServiceWorkerResponse; 23 class WebServiceWorkerResponse;
24 24
25 class MODULES_EXPORT FetchResponseData final 25 class MODULES_EXPORT FetchResponseData final
26 : public GarbageCollectedFinalized<FetchResponseData> { 26 : public GarbageCollectedFinalized<FetchResponseData> {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 Member<BodyStreamBuffer> buffer_; 131 Member<BodyStreamBuffer> buffer_;
132 String mime_type_; 132 String mime_type_;
133 int64_t response_time_; 133 int64_t response_time_;
134 String cache_storage_cache_name_; 134 String cache_storage_cache_name_;
135 HTTPHeaderSet cors_exposed_header_names_; 135 HTTPHeaderSet cors_exposed_header_names_;
136 }; 136 };
137 137
138 } // namespace blink 138 } // namespace blink
139 139
140 #endif // FetchResponseData_h 140 #endif // FetchResponseData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698