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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp

Issue 2031973002: Move StyleSheetResourceClient to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/fetch/StyleSheetResourceClient.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
index 0564b945ba8a6c0f8ecf7fa63106d193bbeae404..f6402a74bb66ea31983383bdf265e6192d1bfa14 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
@@ -24,6 +24,7 @@
namespace blink {
class InspectorResourceContentLoader::ResourceClient final : public GarbageCollectedFinalized<InspectorResourceContentLoader::ResourceClient>, private RawResourceClient, private StyleSheetResourceClient {
+ USING_GARBAGE_COLLECTED_MIXIN(ResourceClient);
public:
explicit ResourceClient(InspectorResourceContentLoader* loader)
: m_loader(loader)
@@ -41,6 +42,7 @@ public:
DEFINE_INLINE_TRACE()
{
visitor->trace(m_loader);
+ StyleSheetResourceClient::trace(visitor);
}
private:
« no previous file with comments | « third_party/WebKit/Source/core/fetch/StyleSheetResourceClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698