Home | History | Annotate | Download | only in notifications

Lines Matching refs:Notification

56     class Notification : public RefCounted<Notification>, public ActiveDOMObject, public EventTarget { 
58 static Notification* create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider) { return new Notification(url, context, ec, provider); }
59 static Notification* create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider) { return new Notification(contents, context, ec, provider); }
61 virtual ~Notification();
74 using RefCounted<Notification>::ref;
75 using RefCounted<Notification>::deref;
79 virtual Notification* toNotification() { return this; }
82 Notification(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider);
83 Notification(const NotificationContents& fields, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider);