| OLD | NEW |
| 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" |
| 12 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" | 13 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" |
| 13 #include "wtf/PassRefPtr.h" | 14 #include "wtf/PassRefPtr.h" |
| 14 #include "wtf/Vector.h" | 15 #include "wtf/Vector.h" |
| 15 #include "wtf/text/AtomicString.h" | 16 #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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 Member<BodyStreamBuffer> m_buffer; | 129 Member<BodyStreamBuffer> m_buffer; |
| 130 String m_mimeType; | 130 String m_mimeType; |
| 131 int64_t m_responseTime; | 131 int64_t m_responseTime; |
| 132 String m_cacheStorageCacheName; | 132 String m_cacheStorageCacheName; |
| 133 HTTPHeaderSet m_corsExposedHeaderNames; | 133 HTTPHeaderSet m_corsExposedHeaderNames; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace blink | 136 } // namespace blink |
| 137 | 137 |
| 138 #endif // FetchResponseData_h | 138 #endif // FetchResponseData_h |
| OLD | NEW |