| Index: Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerContainer.cpp b/Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| index a34f7748184e6c31e2d037b800df954a000843ca..effa67a90bb37cc06fd2efdd7bbd567a03557caa 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| @@ -56,9 +56,9 @@ using blink::WebServiceWorkerProvider;
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<ServiceWorkerContainer> ServiceWorkerContainer::create(ExecutionContext* executionContext)
|
| +ServiceWorkerContainer* ServiceWorkerContainer::create(ExecutionContext* executionContext)
|
| {
|
| - return adoptRefWillBeNoop(new ServiceWorkerContainer(executionContext));
|
| + return new ServiceWorkerContainer(executionContext);
|
| }
|
|
|
| ServiceWorkerContainer::~ServiceWorkerContainer()
|
|
|