| Index: Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp b/Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp
|
| index 723ba2cd6d94deb75adcc789c7509639645b0473..ef67e77668df7df79e11b6d9a97323c57a677607 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerContainerClient.cpp
|
| @@ -14,9 +14,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -PassOwnPtr<ServiceWorkerContainerClient> ServiceWorkerContainerClient::create(PassOwnPtr<blink::WebServiceWorkerProvider> provider)
|
| +PassOwnPtrWillBeRawPtr<ServiceWorkerContainerClient> ServiceWorkerContainerClient::create(PassOwnPtr<blink::WebServiceWorkerProvider> provider)
|
| {
|
| - return adoptPtr(new ServiceWorkerContainerClient(provider));
|
| + return adoptPtrWillBeNoop(new ServiceWorkerContainerClient(provider));
|
| }
|
|
|
| ServiceWorkerContainerClient::~ServiceWorkerContainerClient()
|
| @@ -45,7 +45,7 @@ ServiceWorkerContainerClient* ServiceWorkerContainerClient::from(ExecutionContex
|
| }
|
|
|
| ASSERT(context->isWorkerGlobalScope());
|
| - return static_cast<ServiceWorkerContainerClient*>(Supplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
|
| + return static_cast<ServiceWorkerContainerClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
|
| }
|
|
|
| ServiceWorkerContainerClient::ServiceWorkerContainerClient(PassOwnPtr<blink::WebServiceWorkerProvider> provider)
|
|
|