| 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 "modules/ModulesExport.h" | 8 #include "modules/ModulesExport.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "platform/weborigin/KURL.h" | 10 #include "platform/weborigin/KURL.h" |
| 11 #include "public/platform/WebServiceWorkerRequest.h" | 11 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" |
| 12 #include "wtf/PassRefPtr.h" | 12 #include "wtf/PassRefPtr.h" |
| 13 #include "wtf/text/AtomicString.h" | 13 #include "wtf/text/AtomicString.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class BodyStreamBuffer; | 17 class BodyStreamBuffer; |
| 18 class ExecutionContext; | 18 class ExecutionContext; |
| 19 class FetchHeaderList; | 19 class FetchHeaderList; |
| 20 class WebServiceWorkerResponse; | 20 class WebServiceWorkerResponse; |
| 21 | 21 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 AtomicString m_statusMessage; | 77 AtomicString m_statusMessage; |
| 78 Member<FetchHeaderList> m_headerList; | 78 Member<FetchHeaderList> m_headerList; |
| 79 Member<FetchResponseData> m_internalResponse; | 79 Member<FetchResponseData> m_internalResponse; |
| 80 Member<BodyStreamBuffer> m_buffer; | 80 Member<BodyStreamBuffer> m_buffer; |
| 81 String m_mimeType; | 81 String m_mimeType; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace blink | 84 } // namespace blink |
| 85 | 85 |
| 86 #endif // FetchResponseData_h | 86 #endif // FetchResponseData_h |
| OLD | NEW |