| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.cpp b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.cpp
|
| index 4a237280aab03d930a59fe0d7038711dd32f223b..c38ef596e8e09dd6dcc70a3e463f444bd973f854 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScopeClient.cpp
|
| @@ -43,10 +43,10 @@ const char* ServiceWorkerGlobalScopeClient::supplementName()
|
|
|
| ServiceWorkerGlobalScopeClient* ServiceWorkerGlobalScopeClient::from(ExecutionContext* context)
|
| {
|
| - return static_cast<ServiceWorkerGlobalScopeClient*>(Supplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
|
| + return static_cast<ServiceWorkerGlobalScopeClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
|
| }
|
|
|
| -void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients* clients, PassOwnPtr<ServiceWorkerGlobalScopeClient> client)
|
| +void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients* clients, PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient> client)
|
| {
|
| clients->provideSupplement(ServiceWorkerGlobalScopeClient::supplementName(), client);
|
| }
|
|
|