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

Unified Diff: Source/core/workers/WorkerClients.h

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: using namespace WebCore Created 6 years, 8 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/testing/InternalSettings.cpp ('k') | Source/core/workers/WorkerGlobalScopeProxyProvider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/WorkerClients.h
diff --git a/Source/core/workers/WorkerClients.h b/Source/core/workers/WorkerClients.h
index 7a09e2da8b1923838dd47ae1e484712332cf4701..e81e928122a2a96e869e2656b8deaa2b85512d72 100644
--- a/Source/core/workers/WorkerClients.h
+++ b/Source/core/workers/WorkerClients.h
@@ -39,7 +39,8 @@ namespace WebCore {
// This is created on the main thread, passed to the worker thread and
// attached to WorkerGlobalScope when it is created.
// This class can be used to provide "client" implementations to Workers.
-class WorkerClients : public NoBaseWillBeGarbageCollectedFinalized<WorkerClients>, public Supplementable<WorkerClients> {
+class WorkerClients : public NoBaseWillBeGarbageCollectedFinalized<WorkerClients>, public WillBeHeapSupplementable<WorkerClients> {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerClients);
WTF_MAKE_NONCOPYABLE(WorkerClients);
public:
static PassOwnPtrWillBeRawPtr<WorkerClients> create()
@@ -51,7 +52,7 @@ public:
virtual void trace(Visitor* visitor) OVERRIDE
{
- Supplementable<WorkerClients>::trace(visitor);
+ WillBeHeapSupplementable<WorkerClients>::trace(visitor);
}
private:
« no previous file with comments | « Source/core/testing/InternalSettings.cpp ('k') | Source/core/workers/WorkerGlobalScopeProxyProvider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698