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

Unified Diff: third_party/WebKit/Source/core/fetch/ScriptResource.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/ScriptResource.h
diff --git a/third_party/WebKit/Source/core/fetch/ScriptResource.h b/third_party/WebKit/Source/core/fetch/ScriptResource.h
index 036e26b59b7c8120423c19ea3d8201f7d4a5e78f..011ee0bab7e3413e1717fd429fad6e385d56abb8 100644
--- a/third_party/WebKit/Source/core/fetch/ScriptResource.h
+++ b/third_party/WebKit/Source/core/fetch/ScriptResource.h
@@ -43,15 +43,13 @@ class FetchRequest;
class ResourceFetcher;
class ScriptResource;
-class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public ResourceClient {
+class CORE_EXPORT ScriptResourceClient : public ResourceClient {
public:
~ScriptResourceClient() override {}
static bool isExpectedType(ResourceClient* client) { return client->getResourceClientType() == ScriptType; }
ResourceClientType getResourceClientType() const final { return ScriptType; }
virtual void notifyAppendData(ScriptResource* resource) { }
-
- DEFINE_INLINE_VIRTUAL_TRACE() {}
};
class CORE_EXPORT ScriptResource final : public TextResource {
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp ('k') | third_party/WebKit/Source/core/fetch/ScriptResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698