| 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 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 "public/platform/WebURLRequest.h" | 13 #include "public/platform/WebURLRequest.h" |
| 14 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" | 14 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" |
| 15 #include "wtf/PassOwnPtr.h" | |
| 16 #include "wtf/PassRefPtr.h" | 15 #include "wtf/PassRefPtr.h" |
| 17 #include "wtf/text/AtomicString.h" | 16 #include "wtf/text/AtomicString.h" |
| 18 #include "wtf/text/WTFString.h" | 17 #include "wtf/text/WTFString.h" |
| 19 | 18 |
| 20 namespace blink { | 19 namespace blink { |
| 21 | 20 |
| 22 class BodyStreamBuffer; | 21 class BodyStreamBuffer; |
| 23 class ExecutionContext; | 22 class ExecutionContext; |
| 24 class FetchHeaderList; | 23 class FetchHeaderList; |
| 25 class PasswordCredential; | 24 class PasswordCredential; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 Tainting m_responseTainting; | 110 Tainting m_responseTainting; |
| 112 Member<BodyStreamBuffer> m_buffer; | 111 Member<BodyStreamBuffer> m_buffer; |
| 113 String m_mimeType; | 112 String m_mimeType; |
| 114 String m_integrity; | 113 String m_integrity; |
| 115 RefPtr<EncodedFormData> m_attachedCredential; | 114 RefPtr<EncodedFormData> m_attachedCredential; |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace blink | 117 } // namespace blink |
| 119 | 118 |
| 120 #endif // FetchRequestData_h | 119 #endif // FetchRequestData_h |
| OLD | NEW |