| Index: Source/modules/serviceworkers/InstallPhaseEvent.cpp
|
| diff --git a/Source/modules/serviceworkers/InstallPhaseEvent.cpp b/Source/modules/serviceworkers/InstallPhaseEvent.cpp
|
| index 0c33d865ab7a526df68299d8beecee2b7807c486..b82c10ea164181cc44bacab68b663f53a1800cc2 100644
|
| --- a/Source/modules/serviceworkers/InstallPhaseEvent.cpp
|
| +++ b/Source/modules/serviceworkers/InstallPhaseEvent.cpp
|
| @@ -41,6 +41,11 @@ PassRefPtrWillBeRawPtr<InstallPhaseEvent> InstallPhaseEvent::create()
|
| return adoptRefWillBeRefCountedGarbageCollected(new InstallPhaseEvent());
|
| }
|
|
|
| +PassRefPtrWillBeRawPtr<InstallPhaseEvent> InstallPhaseEvent::create(const AtomicString& type, const EventInit& eventInit, PassRefPtr<WaitUntilObserver> observer)
|
| +{
|
| + return adoptRefWillBeRefCountedGarbageCollected(new InstallPhaseEvent(type, eventInit, observer));
|
| +}
|
| +
|
| InstallPhaseEvent::~InstallPhaseEvent()
|
| {
|
| }
|
|
|