Index: third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
diff --git a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
index 990ea7a838012a21e0f5d1f4390df2591bcbcb45..d5967e457a6888f55ba9fcae1cb7b90a0118e681 100644 |
--- a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
+++ b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp |
@@ -21,9 +21,7 @@ |
#include "public/platform/WebSecurityOrigin.h" |
#include "public/platform/modules/notifications/WebNotificationData.h" |
#include "wtf/Assertions.h" |
-#include "wtf/PtrUtil.h" |
#include "wtf/RefPtr.h" |
-#include <memory> |
namespace blink { |
namespace { |
@@ -78,7 +76,7 @@ ScriptPromise ServiceWorkerRegistrationNotifications::showNotification(ScriptSta |
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState); |
ScriptPromise promise = resolver->promise(); |
- std::unique_ptr<WebNotificationShowCallbacks> callbacks = wrapUnique(new CallbackPromiseAdapter<void, void>(resolver)); |
+ OwnPtr<WebNotificationShowCallbacks> callbacks = adoptPtr(new CallbackPromiseAdapter<void, void>(resolver)); |
ServiceWorkerRegistrationNotifications::from(executionContext, registration).prepareShow(data, std::move(callbacks)); |
return promise; |
@@ -127,22 +125,22 @@ ServiceWorkerRegistrationNotifications& ServiceWorkerRegistrationNotifications:: |
return *supplement; |
} |
-void ServiceWorkerRegistrationNotifications::prepareShow(const WebNotificationData& data, std::unique_ptr<WebNotificationShowCallbacks> callbacks) |
+void ServiceWorkerRegistrationNotifications::prepareShow(const WebNotificationData& data, PassOwnPtr<WebNotificationShowCallbacks> callbacks) |
{ |
RefPtr<SecurityOrigin> origin = getExecutionContext()->getSecurityOrigin(); |
- NotificationResourcesLoader* loader = new NotificationResourcesLoader(WTF::bind<NotificationResourcesLoader*>(&ServiceWorkerRegistrationNotifications::didLoadResources, WeakPersistentThisPointer<ServiceWorkerRegistrationNotifications>(this), origin.release(), data, passed(std::move(callbacks)))); |
+ NotificationResourcesLoader* loader = new NotificationResourcesLoader(bind<NotificationResourcesLoader*>(&ServiceWorkerRegistrationNotifications::didLoadResources, WeakPersistentThisPointer<ServiceWorkerRegistrationNotifications>(this), origin.release(), data, passed(std::move(callbacks)))); |
m_loaders.add(loader); |
loader->start(getExecutionContext(), data); |
} |
-void ServiceWorkerRegistrationNotifications::didLoadResources(PassRefPtr<SecurityOrigin> origin, const WebNotificationData& data, std::unique_ptr<WebNotificationShowCallbacks> callbacks, NotificationResourcesLoader* loader) |
+void ServiceWorkerRegistrationNotifications::didLoadResources(PassRefPtr<SecurityOrigin> origin, const WebNotificationData& data, PassOwnPtr<WebNotificationShowCallbacks> callbacks, NotificationResourcesLoader* loader) |
{ |
DCHECK(m_loaders.contains(loader)); |
WebNotificationManager* notificationManager = Platform::current()->notificationManager(); |
DCHECK(notificationManager); |
- notificationManager->showPersistent(WebSecurityOrigin(origin.get()), data, loader->getResources(), m_registration->webRegistration(), callbacks.release()); |
+ notificationManager->showPersistent(WebSecurityOrigin(origin.get()), data, loader->getResources(), m_registration->webRegistration(), callbacks.leakPtr()); |
m_loaders.remove(loader); |
} |