| Index: third_party/WebKit/Source/modules/push_messaging/PushController.cpp
|
| diff --git a/third_party/WebKit/Source/modules/push_messaging/PushController.cpp b/third_party/WebKit/Source/modules/push_messaging/PushController.cpp
|
| index 9d505255075198c8bf175455bc7c0cd981c41caf..effe9252dc4064f78fa8bb2f2a963765c9a0b305 100644
|
| --- a/third_party/WebKit/Source/modules/push_messaging/PushController.cpp
|
| +++ b/third_party/WebKit/Source/modules/push_messaging/PushController.cpp
|
| @@ -14,9 +14,9 @@ PushController::PushController(WebPushClient* client)
|
| {
|
| }
|
|
|
| -PassOwnPtrWillBeRawPtr<PushController> PushController::create(WebPushClient* client)
|
| +RawPtr<PushController> PushController::create(WebPushClient* client)
|
| {
|
| - return adoptPtrWillBeNoop(new PushController(client));
|
| + return (new PushController(client));
|
| }
|
|
|
| WebPushClient& PushController::clientFrom(LocalFrame* frame)
|
|
|