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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try 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.h
diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.h b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h
similarity index 95%
rename from third_party/WebKit/Source/core/fetch/ResourceFetcher.h
rename to third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h
index 6c61eeacd78336d2a20cc65f336984d230f4c4cc..31a8810bbcbe608fcfece03ec1d7aeda414ea924 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.h
+++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.h
@@ -27,15 +27,15 @@
#ifndef ResourceFetcher_h
#define ResourceFetcher_h
-#include "core/CoreExport.h"
-#include "core/fetch/CachePolicy.h"
-#include "core/fetch/FetchContext.h"
-#include "core/fetch/FetchInitiatorInfo.h"
-#include "core/fetch/FetchRequest.h"
-#include "core/fetch/Resource.h"
-#include "core/fetch/ResourceLoaderOptions.h"
-#include "core/fetch/SubstituteData.h"
+#include "platform/PlatformExport.h"
#include "platform/Timer.h"
+#include "platform/loader/fetch/CachePolicy.h"
+#include "platform/loader/fetch/FetchContext.h"
+#include "platform/loader/fetch/FetchInitiatorInfo.h"
+#include "platform/loader/fetch/FetchRequest.h"
+#include "platform/loader/fetch/Resource.h"
+#include "platform/loader/fetch/ResourceLoaderOptions.h"
+#include "platform/loader/fetch/SubstituteData.h"
#include "platform/network/ResourceError.h"
#include "platform/network/ResourceLoadPriority.h"
#include "wtf/HashMap.h"
@@ -59,7 +59,7 @@ class ResourceTimingInfo;
// to ResourceFetcher for their lifetime (and will create one if they are
// initialized without a LocalFrame), so a Document can keep a ResourceFetcher
// alive past detach if scripts still reference the Document.
-class CORE_EXPORT ResourceFetcher
+class PLATFORM_EXPORT ResourceFetcher
: public GarbageCollectedFinalized<ResourceFetcher> {
WTF_MAKE_NONCOPYABLE(ResourceFetcher);
USING_PRE_FINALIZER(ResourceFetcher, clearPreloads);

Powered by Google App Engine
This is Rietveld 408576698