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

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

Issue 2191633003: Move ResourceClient to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onheap-raw-resource-client
Patch Set: build fix Created 4 years, 4 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/core/fetch/DocumentResource.h
diff --git a/third_party/WebKit/Source/core/fetch/DocumentResource.h b/third_party/WebKit/Source/core/fetch/DocumentResource.h
index 73d4d3262a607b597c6b7731e0bc548e5260046f..b0132a7b609596075cd9545990339f0e9b957668 100644
--- a/third_party/WebKit/Source/core/fetch/DocumentResource.h
+++ b/third_party/WebKit/Source/core/fetch/DocumentResource.h
@@ -69,12 +69,11 @@ private:
DEFINE_TYPE_CASTS(DocumentResource, Resource, resource, resource->getType() == Resource::SVGDocument, resource.getType() == Resource::SVGDocument);
-class CORE_EXPORT DocumentResourceClient : public GarbageCollectedMixin, public ResourceClient {
+class CORE_EXPORT DocumentResourceClient : public ResourceClient {
public:
~DocumentResourceClient() override {}
static bool isExpectedType(ResourceClient* client) { return client->getResourceClientType() == DocumentType; }
ResourceClientType getResourceClientType() const final { return DocumentType; }
- DEFINE_INLINE_VIRTUAL_TRACE() {}
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/fetch/CSSStyleSheetResource.cpp ('k') | third_party/WebKit/Source/core/fetch/FontResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698