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

Unified Diff: Source/core/workers/SharedWorker.cpp

Issue 200373003: Oilpan: make DataObject and SharedWorker heap Supplementables. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing HeapSupplementable<> trace() calls Created 6 years, 9 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 | « Source/core/workers/SharedWorker.h ('k') | Source/modules/filesystem/DraggedIsolatedFileSystem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/SharedWorker.cpp
diff --git a/Source/core/workers/SharedWorker.cpp b/Source/core/workers/SharedWorker.cpp
index f548e9bff9706412b1c0e779e673ef73327dcec0..f8dab9cb4821552cf6be02baf93871efecdcfe29 100644
--- a/Source/core/workers/SharedWorker.cpp
+++ b/Source/core/workers/SharedWorker.cpp
@@ -109,6 +109,9 @@ void SharedWorker::unsetPreventGC()
void SharedWorker::trace(Visitor* visitor)
{
AbstractWorker::trace(visitor);
+#if ENABLE(OILPAN)
+ HeapSupplementable<SharedWorker>::trace(visitor);
+#endif
}
} // namespace WebCore
« no previous file with comments | « Source/core/workers/SharedWorker.h ('k') | Source/modules/filesystem/DraggedIsolatedFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698