Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013, Intel Corporation 3 * Copyright (C) 2013, Intel Corporation
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 14 matching lines...) Expand all
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #include "core/loader/DocumentThreadableLoader.h" 32 #include "core/loader/DocumentThreadableLoader.h"
33 33
34 #include "core/dom/Document.h" 34 #include "core/dom/Document.h"
35 #include "core/fetch/CrossOriginAccessControl.h"
36 #include "core/fetch/FetchRequest.h"
37 #include "core/fetch/FetchUtils.h"
38 #include "core/fetch/Resource.h"
39 #include "core/fetch/ResourceFetcher.h"
40 #include "core/frame/FrameConsole.h" 35 #include "core/frame/FrameConsole.h"
41 #include "core/frame/LocalFrame.h" 36 #include "core/frame/LocalFrame.h"
42 #include "core/inspector/InspectorInstrumentation.h" 37 #include "core/inspector/InspectorInstrumentation.h"
43 #include "core/inspector/InspectorTraceEvents.h" 38 #include "core/inspector/InspectorTraceEvents.h"
44 #include "core/loader/CrossOriginPreflightResultCache.h" 39 #include "core/loader/CrossOriginPreflightResultCache.h"
45 #include "core/loader/DocumentThreadableLoaderClient.h" 40 #include "core/loader/DocumentThreadableLoaderClient.h"
46 #include "core/loader/FrameLoader.h" 41 #include "core/loader/FrameLoader.h"
47 #include "core/loader/FrameLoaderClient.h" 42 #include "core/loader/FrameLoaderClient.h"
48 #include "core/loader/ThreadableLoaderClient.h" 43 #include "core/loader/ThreadableLoaderClient.h"
49 #include "core/page/ChromeClient.h" 44 #include "core/page/ChromeClient.h"
50 #include "core/page/Page.h" 45 #include "core/page/Page.h"
51 #include "platform/SharedBuffer.h" 46 #include "platform/SharedBuffer.h"
47 #include "platform/loader/fetch/CrossOriginAccessControl.h"
48 #include "platform/loader/fetch/FetchRequest.h"
49 #include "platform/loader/fetch/FetchUtils.h"
50 #include "platform/loader/fetch/Resource.h"
51 #include "platform/loader/fetch/ResourceFetcher.h"
52 #include "platform/network/ResourceRequest.h" 52 #include "platform/network/ResourceRequest.h"
53 #include "platform/weborigin/SchemeRegistry.h" 53 #include "platform/weborigin/SchemeRegistry.h"
54 #include "platform/weborigin/SecurityOrigin.h" 54 #include "platform/weborigin/SecurityOrigin.h"
55 #include "platform/weborigin/SecurityPolicy.h" 55 #include "platform/weborigin/SecurityPolicy.h"
56 #include "public/platform/Platform.h" 56 #include "public/platform/Platform.h"
57 #include "public/platform/WebURLRequest.h" 57 #include "public/platform/WebURLRequest.h"
58 #include "wtf/Assertions.h" 58 #include "wtf/Assertions.h"
59 #include "wtf/PtrUtil.h" 59 #include "wtf/PtrUtil.h"
60 #include "wtf/WeakPtr.h" 60 #include "wtf/WeakPtr.h"
61 #include <memory> 61 #include <memory>
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 } 1146 }
1147 1147
1148 DEFINE_TRACE(DocumentThreadableLoader) { 1148 DEFINE_TRACE(DocumentThreadableLoader) {
1149 visitor->trace(m_resource); 1149 visitor->trace(m_resource);
1150 visitor->trace(m_document); 1150 visitor->trace(m_document);
1151 ThreadableLoader::trace(visitor); 1151 ThreadableLoader::trace(visitor);
1152 RawResourceClient::trace(visitor); 1152 RawResourceClient::trace(visitor);
1153 } 1153 }
1154 1154
1155 } // namespace blink 1155 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698