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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.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
Index: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
index fa457a2c3d2f989970908596a0b9474d6a61423e..f8476085c4870a038176866e5c7eff2bce6851d2 100644
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.h
@@ -48,7 +48,7 @@ class ExecutionContext;
class Response;
class WorkerClients;
-class ServiceWorkerGlobalScopeClient : public Supplement<WorkerClients> {
+class ServiceWorkerGlobalScopeClient : public WillBeHeapSupplement<WorkerClients> {
WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeClient);
public:
virtual ~ServiceWorkerGlobalScopeClient() { }
@@ -69,7 +69,7 @@ protected:
ServiceWorkerGlobalScopeClient() { }
};
-void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients*, PassOwnPtr<ServiceWorkerGlobalScopeClient>);
+void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients*, PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient>);
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698