| Index: Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerContainer.cpp b/Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
| index f966de158b6a7b134acaf53c78bd0cc1b3b8990e..5fed15af4d186e558ce54b1b4a4bbd079d88976e 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()
|
|
|