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

Unified Diff: third_party/WebKit/Source/core/fetch/RawResource.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/RawResource.h
diff --git a/third_party/WebKit/Source/core/fetch/RawResource.h b/third_party/WebKit/Source/core/fetch/RawResource.h
index 9dfa986d62a49b88ce052d8b4cac01af75c665a3..2a5037ff67710263174790aa6738ff2e67ace955 100644
--- a/third_party/WebKit/Source/core/fetch/RawResource.h
+++ b/third_party/WebKit/Source/core/fetch/RawResource.h
@@ -102,7 +102,7 @@ inline RawResource* toRawResource(Resource* resource)
return static_cast<RawResource*>(resource);
}
-class CORE_EXPORT RawResourceClient : public GarbageCollectedMixin, public ResourceClient {
+class CORE_EXPORT RawResourceClient : public ResourceClient {
public:
static bool isExpectedType(ResourceClient* client) { return client->getResourceClientType() == RawResourceType; }
ResourceClientType getResourceClientType() const final { return RawResourceType; }
@@ -132,8 +132,6 @@ public:
virtual void redirectBlocked() {}
virtual void dataDownloaded(Resource*, int) { }
virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&) { }
-
- DEFINE_INLINE_VIRTUAL_TRACE() {}
};
// Checks the sequence of callbacks of RawResourceClient.
« no previous file with comments | « third_party/WebKit/Source/core/fetch/MockResourceClients.cpp ('k') | third_party/WebKit/Source/core/fetch/RawResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698