| Index: Source/modules/notifications/NotificationController.cpp
|
| diff --git a/Source/modules/notifications/NotificationController.cpp b/Source/modules/notifications/NotificationController.cpp
|
| index 5f4796ff7fd9af4c73c3b3a9029d7acc4c5f8b63..16c2863019f6a9be1d6013a54f71379214a30c1d 100644
|
| --- a/Source/modules/notifications/NotificationController.cpp
|
| +++ b/Source/modules/notifications/NotificationController.cpp
|
| @@ -40,9 +40,9 @@ NotificationController::~NotificationController()
|
| {
|
| }
|
|
|
| -PassOwnPtr<NotificationController> NotificationController::create(PassOwnPtr<NotificationClient> client)
|
| +PassOwnPtrWillBeRawPtr<NotificationController> NotificationController::create(PassOwnPtr<NotificationClient> client)
|
| {
|
| - return adoptPtr(new NotificationController(client));
|
| + return adoptPtrWillBeNoop(new NotificationController(client));
|
| }
|
|
|
| NotificationClient& NotificationController::clientFrom(LocalFrame* frame)
|
|
|