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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameFetchContext.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "core/loader/FrameFetchContext.h" 31 #include "core/loader/FrameFetchContext.h"
32 32
33 #include "bindings/core/v8/ScriptController.h" 33 #include "bindings/core/v8/ScriptController.h"
34 #include "bindings/core/v8/V8DOMActivityLogger.h" 34 #include "bindings/core/v8/V8DOMActivityLogger.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/fetch/ClientHintsPreferences.h"
37 #include "core/fetch/FetchInitiatorTypeNames.h"
38 #include "core/fetch/Resource.h"
39 #include "core/fetch/ResourceLoadingLog.h"
40 #include "core/fetch/UniqueIdentifier.h"
41 #include "core/frame/FrameConsole.h" 36 #include "core/frame/FrameConsole.h"
42 #include "core/frame/FrameHost.h" 37 #include "core/frame/FrameHost.h"
43 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
44 #include "core/frame/LocalDOMWindow.h" 39 #include "core/frame/LocalDOMWindow.h"
45 #include "core/frame/LocalFrame.h" 40 #include "core/frame/LocalFrame.h"
46 #include "core/frame/Settings.h" 41 #include "core/frame/Settings.h"
47 #include "core/frame/UseCounter.h" 42 #include "core/frame/UseCounter.h"
48 #include "core/html/HTMLFrameOwnerElement.h" 43 #include "core/html/HTMLFrameOwnerElement.h"
49 #include "core/html/imports/HTMLImportsController.h" 44 #include "core/html/imports/HTMLImportsController.h"
50 #include "core/inspector/ConsoleMessage.h" 45 #include "core/inspector/ConsoleMessage.h"
(...skipping 11 matching lines...) Expand all
62 #include "core/loader/ProgressTracker.h" 57 #include "core/loader/ProgressTracker.h"
63 #include "core/loader/appcache/ApplicationCacheHost.h" 58 #include "core/loader/appcache/ApplicationCacheHost.h"
64 #include "core/page/NetworkStateNotifier.h" 59 #include "core/page/NetworkStateNotifier.h"
65 #include "core/page/Page.h" 60 #include "core/page/Page.h"
66 #include "core/paint/FirstMeaningfulPaintDetector.h" 61 #include "core/paint/FirstMeaningfulPaintDetector.h"
67 #include "core/svg/graphics/SVGImageChromeClient.h" 62 #include "core/svg/graphics/SVGImageChromeClient.h"
68 #include "core/timing/DOMWindowPerformance.h" 63 #include "core/timing/DOMWindowPerformance.h"
69 #include "core/timing/Performance.h" 64 #include "core/timing/Performance.h"
70 #include "platform/WebFrameScheduler.h" 65 #include "platform/WebFrameScheduler.h"
71 #include "platform/instrumentation/tracing/TracedValue.h" 66 #include "platform/instrumentation/tracing/TracedValue.h"
67 #include "platform/loader/fetch/ClientHintsPreferences.h"
68 #include "platform/loader/fetch/FetchInitiatorTypeNames.h"
69 #include "platform/loader/fetch/Resource.h"
70 #include "platform/loader/fetch/ResourceLoadingLog.h"
71 #include "platform/loader/fetch/UniqueIdentifier.h"
72 #include "platform/mhtml/MHTMLArchive.h" 72 #include "platform/mhtml/MHTMLArchive.h"
73 #include "platform/network/NetworkUtils.h" 73 #include "platform/network/NetworkUtils.h"
74 #include "platform/network/ResourceLoadPriority.h" 74 #include "platform/network/ResourceLoadPriority.h"
75 #include "platform/network/ResourceTimingInfo.h" 75 #include "platform/network/ResourceTimingInfo.h"
76 #include "platform/weborigin/SchemeRegistry.h" 76 #include "platform/weborigin/SchemeRegistry.h"
77 #include "platform/weborigin/SecurityPolicy.h" 77 #include "platform/weborigin/SecurityPolicy.h"
78 #include "public/platform/WebCachePolicy.h" 78 #include "public/platform/WebCachePolicy.h"
79 #include "public/platform/WebDocumentSubresourceFilter.h" 79 #include "public/platform/WebDocumentSubresourceFilter.h"
80 #include "public/platform/WebInsecureRequestPolicy.h" 80 #include "public/platform/WebInsecureRequestPolicy.h"
81 #include "public/platform/WebViewScheduler.h" 81 #include "public/platform/WebViewScheduler.h"
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 response); 1055 response);
1056 } 1056 }
1057 1057
1058 DEFINE_TRACE(FrameFetchContext) { 1058 DEFINE_TRACE(FrameFetchContext) {
1059 visitor->trace(m_document); 1059 visitor->trace(m_document);
1060 visitor->trace(m_documentLoader); 1060 visitor->trace(m_documentLoader);
1061 FetchContext::trace(visitor); 1061 FetchContext::trace(visitor);
1062 } 1062 }
1063 1063
1064 } // namespace blink 1064 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698