Home | History | Annotate | Download | only in push_messaging

Lines Matching refs:PushEvent

21 class PushEvent FINAL : public Event {
24 static PassRefPtrWillBeRawPtr<PushEvent> create()
26 return adoptRefWillBeNoop(new PushEvent);
28 static PassRefPtrWillBeRawPtr<PushEvent> create(const AtomicString& type, const String& data)
30 return adoptRefWillBeNoop(new PushEvent(type, data));
32 static PassRefPtrWillBeRawPtr<PushEvent> create(const AtomicString& type, const PushEventInit& initializer)
34 return adoptRefWillBeNoop(new PushEvent(type, initializer));
37 virtual ~PushEvent();
44 PushEvent();
45 PushEvent(const AtomicString& type, const String& data);
46 PushEvent(const AtomicString& type, const PushEventInit&);