| Index: trunk/Source/modules/serviceworkers/InstallEvent.h
|
| ===================================================================
|
| --- trunk/Source/modules/serviceworkers/InstallEvent.h (revision 166772)
|
| +++ trunk/Source/modules/serviceworkers/InstallEvent.h (working copy)
|
| @@ -42,7 +42,7 @@
|
| class InstallEvent FINAL : public InstallPhaseEvent {
|
| public:
|
| static PassRefPtr<InstallEvent> create();
|
| - static PassRefPtr<InstallEvent> create(const AtomicString& type, const EventInit&, PassRefPtrWillBeRawPtr<WaitUntilObserver>);
|
| + static PassRefPtr<InstallEvent> create(const AtomicString& type, const EventInit&, PassRefPtr<WaitUntilObserver>);
|
| virtual ~InstallEvent() { }
|
|
|
| void replace();
|
| @@ -53,7 +53,7 @@
|
|
|
| private:
|
| InstallEvent();
|
| - InstallEvent(const AtomicString& type, const EventInit&, PassRefPtrWillBeRawPtr<WaitUntilObserver>);
|
| + InstallEvent(const AtomicString& type, const EventInit&, PassRefPtr<WaitUntilObserver>);
|
| };
|
|
|
| } // namespace WebCore
|
|
|