| 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 "config.h" | 5 #include "config.h" |
| 6 #include "FetchManager.h" | 6 #include "modules/fetch/FetchManager.h" |
| 7 | 7 |
| 8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
| 9 #include "bindings/core/v8/ScriptPromiseResolver.h" | 9 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 10 #include "bindings/core/v8/ScriptState.h" | 10 #include "bindings/core/v8/ScriptState.h" |
| 11 #include "bindings/core/v8/V8ThrowException.h" | 11 #include "bindings/core/v8/V8ThrowException.h" |
| 12 #include "core/dom/ExceptionCode.h" | 12 #include "core/dom/ExceptionCode.h" |
| 13 #include "core/fetch/FetchUtils.h" | 13 #include "core/fetch/FetchUtils.h" |
| 14 #include "core/fileapi/Blob.h" | 14 #include "core/fileapi/Blob.h" |
| 15 #include "core/frame/csp/ContentSecurityPolicy.h" | 15 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 16 #include "core/loader/ThreadableLoader.h" | 16 #include "core/loader/ThreadableLoader.h" |
| 17 #include "core/loader/ThreadableLoaderClient.h" | 17 #include "core/loader/ThreadableLoaderClient.h" |
| 18 #include "modules/serviceworkers/Body.h" | 18 #include "modules/fetch/Body.h" |
| 19 #include "modules/serviceworkers/BodyStreamBuffer.h" | 19 #include "modules/fetch/BodyStreamBuffer.h" |
| 20 #include "modules/serviceworkers/FetchRequestData.h" | 20 #include "modules/fetch/FetchRequestData.h" |
| 21 #include "modules/serviceworkers/Response.h" | 21 #include "modules/fetch/Response.h" |
| 22 #include "modules/serviceworkers/ResponseInit.h" | 22 #include "modules/fetch/ResponseInit.h" |
| 23 #include "platform/network/ResourceRequest.h" | 23 #include "platform/network/ResourceRequest.h" |
| 24 #include "platform/weborigin/SecurityOrigin.h" | 24 #include "platform/weborigin/SecurityOrigin.h" |
| 25 #include "public/platform/WebURLRequest.h" | 25 #include "public/platform/WebURLRequest.h" |
| 26 #include "wtf/HashSet.h" | 26 #include "wtf/HashSet.h" |
| 27 | 27 |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 class FetchManager::Loader : public ThreadableLoaderClient { | 30 class FetchManager::Loader : public ThreadableLoaderClient { |
| 31 public: | 31 public: |
| 32 Loader(ExecutionContext*, FetchManager*, PassRefPtr<ScriptPromiseResolver>,
const FetchRequestData*); | 32 Loader(ExecutionContext*, FetchManager*, PassRefPtr<ScriptPromiseResolver>,
const FetchRequestData*); |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 } | 377 } |
| 378 } | 378 } |
| 379 | 379 |
| 380 void FetchManager::onLoaderFinished(Loader* loader) | 380 void FetchManager::onLoaderFinished(Loader* loader) |
| 381 { | 381 { |
| 382 // We don't use remove here, becuase it may cause recursive deletion. | 382 // We don't use remove here, becuase it may cause recursive deletion. |
| 383 OwnPtr<Loader> p = m_loaders.take(loader); | 383 OwnPtr<Loader> p = m_loaders.take(loader); |
| 384 } | 384 } |
| 385 | 385 |
| 386 } // namespace blink | 386 } // namespace blink |
| OLD | NEW |