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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
similarity index 99%
rename from third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
rename to third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
index 59a96fcbacc43add98b3f2131979416e0dbe0917..3170ce7e912cdc80a94c20d648b16bac2060f598 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
@@ -25,18 +25,18 @@
sheets and html pages from the web. It has a memory cache for these objects.
*/
-#include "core/fetch/ResourceFetcher.h"
-
-#include "core/fetch/FetchContext.h"
-#include "core/fetch/FetchInitiatorTypeNames.h"
-#include "core/fetch/MemoryCache.h"
-#include "core/fetch/ResourceLoader.h"
-#include "core/fetch/ResourceLoadingLog.h"
-#include "core/fetch/UniqueIdentifier.h"
+#include "platform/loader/fetch/ResourceFetcher.h"
+
#include "platform/Histogram.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "platform/instrumentation/tracing/TraceEvent.h"
#include "platform/instrumentation/tracing/TracedValue.h"
+#include "platform/loader/fetch/FetchContext.h"
+#include "platform/loader/fetch/FetchInitiatorTypeNames.h"
+#include "platform/loader/fetch/MemoryCache.h"
+#include "platform/loader/fetch/ResourceLoader.h"
+#include "platform/loader/fetch/ResourceLoadingLog.h"
+#include "platform/loader/fetch/UniqueIdentifier.h"
#include "platform/mhtml/ArchiveResource.h"
#include "platform/mhtml/MHTMLArchive.h"
#include "platform/network/NetworkInstrumentation.h"
@@ -254,8 +254,7 @@ ResourceFetcher::ResourceFetcher(FetchContext* newContext)
m_autoLoadImages(true),
m_imagesEnabled(true),
m_allowStaleResources(false),
- m_imageFetched(false) {
-}
+ m_imageFetched(false) {}
ResourceFetcher::~ResourceFetcher() {}

Powered by Google App Engine
This is Rietveld 408576698