Index: Source/modules/serviceworkers/ServiceWorker.cpp |
diff --git a/Source/modules/serviceworkers/ServiceWorker.cpp b/Source/modules/serviceworkers/ServiceWorker.cpp |
index c944cdff485c6e1a8aa7b955fba7c318f80c372d..d6cf73abaf736b0273ef36ab5741f78712d7ca7e 100644 |
--- a/Source/modules/serviceworkers/ServiceWorker.cpp |
+++ b/Source/modules/serviceworkers/ServiceWorker.cpp |
@@ -101,13 +101,13 @@ String ServiceWorker::state() const |
} |
} |
-PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::from(ExecutionContext* executionContext, WebServiceWorker* worker) |
+ServiceWorker* ServiceWorker::from(ExecutionContext* executionContext, WebServiceWorker* worker) |
{ |
if (!worker) |
return nullptr; |
- RefPtrWillBeRawPtr<ServiceWorker> serviceWorker = getOrCreate(executionContext, worker); |
- return serviceWorker.release(); |
+ ServiceWorker* serviceWorker = getOrCreate(executionContext, worker); |
+ return serviceWorker; |
haraken
2015/08/13 07:58:49
return getOrCreate(executionContext, worker);
|
} |
bool ServiceWorker::hasPendingActivity() const |
@@ -124,7 +124,7 @@ void ServiceWorker::stop() |
m_wasStopped = true; |
} |
-PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::getOrCreate(ExecutionContext* executionContext, WebServiceWorker* outerWorker) |
+ServiceWorker* ServiceWorker::getOrCreate(ExecutionContext* executionContext, WebServiceWorker* outerWorker) |
{ |
if (!outerWorker) |
return nullptr; |
@@ -135,9 +135,9 @@ PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::getOrCreate(ExecutionContex |
return existingServiceWorker; |
} |
- RefPtrWillBeRawPtr<ServiceWorker> worker = adoptRefWillBeNoop(new ServiceWorker(executionContext, adoptPtr(outerWorker))); |
+ ServiceWorker* worker = new ServiceWorker(executionContext, adoptPtr(outerWorker)); |
worker->suspendIfNeeded(); |
- return worker.release(); |
+ return worker; |
} |
ServiceWorker::ServiceWorker(ExecutionContext* executionContext, PassOwnPtr<WebServiceWorker> worker) |