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

Unified Diff: third_party/WebKit/Source/core/fetch/LinkFetchResource.h

Issue 2497463004: Loading: move core/fetch/*Resource* to core/loader/resource/ (Closed)
Patch Set: [rebase] Created 4 years, 1 month 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/core/fetch/LinkFetchResource.h
diff --git a/third_party/WebKit/Source/core/fetch/LinkFetchResource.h b/third_party/WebKit/Source/core/fetch/LinkFetchResource.h
deleted file mode 100644
index 3ebf3f48733e0b0c941cbb33c8b750118e3d6ef8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/fetch/LinkFetchResource.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef LinkFetchResource_h
-#define LinkFetchResource_h
-
-#include "core/fetch/Resource.h"
-#include "core/fetch/ResourceClient.h"
-
-namespace blink {
-
-class FetchRequest;
-class ResourceFetcher;
-
-class LinkFetchResource final : public Resource {
- public:
- using ClientType = ResourceClient;
-
- static Resource* fetch(Resource::Type, FetchRequest&, ResourceFetcher*);
- ~LinkFetchResource() override;
-
- private:
- class LinkResourceFactory : public ResourceFactory {
- public:
- explicit LinkResourceFactory(Resource::Type type) : ResourceFactory(type) {}
-
- Resource* create(const ResourceRequest& request,
- const ResourceLoaderOptions& options,
- const String& charset) const override {
- return new LinkFetchResource(request, type(), options);
- }
- };
- LinkFetchResource(const ResourceRequest&, Type, const ResourceLoaderOptions&);
-};
-
-} // namespace blink
-
-#endif // LinkFetchResource_h
« no previous file with comments | « third_party/WebKit/Source/core/fetch/DocumentResource.cpp ('k') | third_party/WebKit/Source/core/fetch/LinkFetchResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698