Home | History | Annotate | Download | only in notifications

Lines Matching defs:Notification

66 class Notification : public RefCounted<Notification>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
69 Notification();
71 static PassRefPtr<Notification> create(const String& title, const String& body, const String& iconURI, ScriptExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter> provider);
74 static PassRefPtr<Notification> create(ScriptExecutionContext*, const String& title, const Dictionary& options);
77 virtual ~Notification();
120 using RefCounted<Notification>::ref;
121 using RefCounted<Notification>::deref;
145 Notification(const String& title, const String& body, const String& iconURI, ScriptExecutionContext*, ExceptionState&, PassRefPtr<NotificationCenter>);
148 Notification(ScriptExecutionContext*, const String& title);
163 void taskTimerFired(Timer<Notification>*);
188 OwnPtr<Timer<Notification> > m_taskTimer;