| 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 #include "modules/fetch/FetchRequestData.h" | 5 #include "modules/fetch/FetchRequestData.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScriptState.h" | 7 #include "bindings/core/v8/ScriptState.h" |
| 8 #include "core/dom/ExecutionContext.h" | 8 #include "core/dom/ExecutionContext.h" |
| 9 #include "core/fetch/ResourceLoaderOptions.h" | 9 #include "core/fetch/ResourceLoaderOptions.h" |
| 10 #include "core/loader/ThreadableLoader.h" | 10 #include "core/loader/ThreadableLoader.h" |
| 11 #include "core/streams/ReadableStream.h" | |
| 12 #include "modules/credentialmanager/PasswordCredential.h" | 11 #include "modules/credentialmanager/PasswordCredential.h" |
| 13 #include "modules/fetch/BodyStreamBuffer.h" | 12 #include "modules/fetch/BodyStreamBuffer.h" |
| 14 #include "modules/fetch/DataConsumerHandleUtil.h" | 13 #include "modules/fetch/DataConsumerHandleUtil.h" |
| 15 #include "modules/fetch/FetchBlobDataConsumerHandle.h" | 14 #include "modules/fetch/FetchBlobDataConsumerHandle.h" |
| 16 #include "modules/fetch/FetchHeaderList.h" | 15 #include "modules/fetch/FetchHeaderList.h" |
| 17 #include "platform/HTTPNames.h" | 16 #include "platform/HTTPNames.h" |
| 18 #include "platform/network/ResourceRequest.h" | 17 #include "platform/network/ResourceRequest.h" |
| 19 #include "public/platform/WebURLRequest.h" | 18 #include "public/platform/WebURLRequest.h" |
| 20 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" | 19 #include "public/platform/modules/serviceworker/WebServiceWorkerRequest.h" |
| 21 | 20 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 m_attachedCredential.clear(); | 114 m_attachedCredential.clear(); |
| 116 } | 115 } |
| 117 | 116 |
| 118 DEFINE_TRACE(FetchRequestData) | 117 DEFINE_TRACE(FetchRequestData) |
| 119 { | 118 { |
| 120 visitor->trace(m_buffer); | 119 visitor->trace(m_buffer); |
| 121 visitor->trace(m_headerList); | 120 visitor->trace(m_headerList); |
| 122 } | 121 } |
| 123 | 122 |
| 124 } // namespace blink | 123 } // namespace blink |
| OLD | NEW |