| Index: third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
|
| index 43feeee16082da804453c40aa2663116f95a2060..2ade67dbcc238ab411244ef529bbcef57d6015f8 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/InstallEvent.cpp
|
| @@ -11,19 +11,19 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create()
|
| +RawPtr<InstallEvent> InstallEvent::create()
|
| {
|
| - return adoptRefWillBeNoop(new InstallEvent());
|
| + return new InstallEvent();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit)
|
| +RawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit)
|
| {
|
| - return adoptRefWillBeNoop(new InstallEvent(type, eventInit));
|
| + return new InstallEvent(type, eventInit);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit, WaitUntilObserver* observer)
|
| +RawPtr<InstallEvent> InstallEvent::create(const AtomicString& type, const ExtendableEventInit& eventInit, WaitUntilObserver* observer)
|
| {
|
| - return adoptRefWillBeNoop(new InstallEvent(type, eventInit, observer));
|
| + return new InstallEvent(type, eventInit, observer);
|
| }
|
|
|
| InstallEvent::~InstallEvent()
|
|
|