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

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

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "core/paint/FirstMeaningfulPaintDetector.h" 64 #include "core/paint/FirstMeaningfulPaintDetector.h"
65 #include "core/svg/graphics/SVGImageChromeClient.h" 65 #include "core/svg/graphics/SVGImageChromeClient.h"
66 #include "core/timing/DOMWindowPerformance.h" 66 #include "core/timing/DOMWindowPerformance.h"
67 #include "core/timing/Performance.h" 67 #include "core/timing/Performance.h"
68 #include "platform/WebFrameScheduler.h" 68 #include "platform/WebFrameScheduler.h"
69 #include "platform/exported/WrappedResourceRequest.h" 69 #include "platform/exported/WrappedResourceRequest.h"
70 #include "platform/instrumentation/tracing/TracedValue.h" 70 #include "platform/instrumentation/tracing/TracedValue.h"
71 #include "platform/loader/fetch/ClientHintsPreferences.h" 71 #include "platform/loader/fetch/ClientHintsPreferences.h"
72 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" 72 #include "platform/loader/fetch/FetchInitiatorTypeNames.h"
73 #include "platform/loader/fetch/Resource.h" 73 #include "platform/loader/fetch/Resource.h"
74 #include "platform/loader/fetch/ResourceLoadPriority.h"
74 #include "platform/loader/fetch/ResourceLoadingLog.h" 75 #include "platform/loader/fetch/ResourceLoadingLog.h"
76 #include "platform/loader/fetch/ResourceTimingInfo.h"
75 #include "platform/loader/fetch/UniqueIdentifier.h" 77 #include "platform/loader/fetch/UniqueIdentifier.h"
76 #include "platform/mhtml/MHTMLArchive.h" 78 #include "platform/mhtml/MHTMLArchive.h"
77 #include "platform/network/NetworkStateNotifier.h" 79 #include "platform/network/NetworkStateNotifier.h"
78 #include "platform/network/NetworkUtils.h" 80 #include "platform/network/NetworkUtils.h"
79 #include "platform/network/ResourceLoadPriority.h"
80 #include "platform/network/ResourceTimingInfo.h"
81 #include "platform/weborigin/SchemeRegistry.h" 81 #include "platform/weborigin/SchemeRegistry.h"
82 #include "platform/weborigin/SecurityPolicy.h" 82 #include "platform/weborigin/SecurityPolicy.h"
83 #include "public/platform/WebCachePolicy.h" 83 #include "public/platform/WebCachePolicy.h"
84 #include "public/platform/WebInsecureRequestPolicy.h" 84 #include "public/platform/WebInsecureRequestPolicy.h"
85 #include "public/platform/WebViewScheduler.h" 85 #include "public/platform/WebViewScheduler.h"
86 #include "public/platform/modules/serviceworker/WebServiceWorkerNetworkProvider. h" 86 #include "public/platform/modules/serviceworker/WebServiceWorkerNetworkProvider. h"
87 #include "wtf/Vector.h" 87 #include "wtf/Vector.h"
88 88
89 namespace blink { 89 namespace blink {
90 90
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 response); 1057 response);
1058 } 1058 }
1059 1059
1060 DEFINE_TRACE(FrameFetchContext) { 1060 DEFINE_TRACE(FrameFetchContext) {
1061 visitor->trace(m_document); 1061 visitor->trace(m_document);
1062 visitor->trace(m_documentLoader); 1062 visitor->trace(m_documentLoader);
1063 FetchContext::trace(visitor); 1063 FetchContext::trace(visitor);
1064 } 1064 }
1065 1065
1066 } // namespace blink 1066 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698