Home
last modified time | relevance | path

Searched refs:Notification (Results 1 – 25 of 104) sorted by relevance

12345

/external/webkit/Source/WebCore/notifications/
DNotification.cpp49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, Pas… in Notification() function in WebCore::Notification
69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, E… in Notification() function in WebCore::Notification
88 Notification::~Notification() in ~Notification()
96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, Exc… in create()
98 return adoptRef(new Notification(url, context, ec, provider)); in create()
101 PassRefPtr<Notification> Notification::create(const NotificationContents& contents, ScriptExecution… in create()
103 return adoptRef(new Notification(contents, context, ec, provider)); in create()
106 void Notification::show() in show()
126 void Notification::cancel() in cancel()
144 EventTargetData* Notification::eventTargetData() in eventTargetData()
[all …]
DNotification.h61 …class Notification : public RefCounted<Notification>, public ActiveDOMObject, public ThreadableLoa…
64 …static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, Exception…
65 …static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContex…
67 virtual ~Notification();
89 using RefCounted<Notification>::ref;
90 using RefCounted<Notification>::deref;
94 virtual Notification* toNotification() { return this; } in toNotification()
115Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
116Notification(const NotificationContents&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<Noti…
DNotificationPresenter.h42 class Notification; variable
58 virtual bool show(Notification*) = 0;
61 virtual void cancel(Notification*) = 0;
66 virtual void notificationObjectDestroyed(Notification*) = 0;
DNotificationCenter.h51 PassRefPtr<Notification> createHTMLNotification(const String& URI, ExceptionCode& ec) in createHTMLNotification()
61 …return Notification::create(scriptExecutionContext()->completeURL(URI), scriptExecutionContext(), … in createHTMLNotification()
64 …PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const Stri… in createNotification()
71 return Notification::create(contents, scriptExecutionContext(), ec, this); in createNotification()
/external/chromium/chrome/browser/notifications/
Dnotification.cc7 Notification::Notification(const GURL& origin_url, in Notification() function in Notification
19 Notification::Notification(const Notification& notification) in Notification() function in Notification
27 Notification::~Notification() {} in ~Notification()
29 Notification& Notification::operator=(const Notification& notification) { in operator =()
Dnotification.h20 class Notification {
22 Notification(const GURL& origin_url,
27 Notification(const Notification& notification);
28 ~Notification();
29 Notification& operator=(const Notification& notification);
Dballoon.h20 class Notification; variable
51 Balloon(const Notification& notification,
56 const Notification& notification() const { return *notification_.get(); } in notification()
99 virtual void Update(const Notification& notification);
116 scoped_ptr<Notification> notification_;
Dballoon.cc14 Balloon::Balloon(const Notification& notification, Profile* profile, in Balloon()
17 notification_(new Notification(notification)), in Balloon()
46 void Balloon::Update(const Notification& notification) { in Update()
48 notification_.reset(new Notification(notification)); in Update()
Dnotification_ui_manager.cc28 QueuedNotification(const Notification& notification, Profile* profile) in QueuedNotification()
33 const Notification& notification() const { return notification_; } in notification()
36 void Replace(const Notification& new_notification) { in Replace()
42 Notification notification_;
93 void NotificationUIManager::Add(const Notification& notification, in Add()
180 bool NotificationUIManager::TryReplacement(const Notification& notification) { in TryReplacement()
Dnotification_ui_manager.h21 class Notification; variable
49 virtual void Add(const Notification& notification,
95 bool TryReplacement(const Notification& notification);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DNotificationPresenterClientQt.h82 typedef QHash <Notification*, NotificationWrapper*> NotificationsQueue;
90 virtual bool show(Notification*);
91 virtual void cancel(Notification*);
92 virtual void notificationObjectDestroyed(Notification*);
107 Notification* notificationForWrapper(const NotificationWrapper*) const;
112 void sendEvent(Notification*, const AtomicString& eventName);
113 void displayNotification(Notification*, const QByteArray&);
114 void removeReplacedNotificationFromQueue(Notification*);
115 void detachNotification(Notification*);
116 void dumpReplacedIdText(Notification*);
[all …]
DNotificationPresenterClientQt.cpp92Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in title()
102Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in message()
113Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in iconData()
126Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in openerPageUrl()
172 bool NotificationPresenterClientQt::show(Notification* notification) in show()
190 void NotificationPresenterClientQt::displayNotification(Notification* notification, const QByteArra… in displayNotification()
240 void NotificationPresenterClientQt::cancel(Notification* notification) in cancel()
258 Notification* notification = notificationForWrapper(wrapper); in cancel()
265 Notification* notification = notificationForWrapper(wrapper); in notificationClicked()
279 Notification* notification = 0; in notificationClicked()
[all …]
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
DMediaPlayerPrivateAVFoundation.cpp671 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification::Type type, double… in scheduleMainThreadNotification()
673 scheduleMainThreadNotification(Notification(type, time)); in scheduleMainThreadNotification()
676 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification::Type type, bool f… in scheduleMainThreadNotification()
678 scheduleMainThreadNotification(Notification(type, finished)); in scheduleMainThreadNotification()
681 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification notification) in scheduleMainThreadNotification()
710 Notification notification = Notification(); in dispatchNotification()
733 case Notification::ItemDidPlayToEndTime: in dispatchNotification()
736 case Notification::ItemTracksChanged: in dispatchNotification()
739 case Notification::ItemStatusChanged: in dispatchNotification()
742 case Notification::ItemSeekableTimeRangesChanged: in dispatchNotification()
[all …]
DMediaPlayerPrivateAVFoundation.h54 class Notification {
74 Notification() in Notification() function
81 Notification(Type type, double time) in Notification() function
88 Notification(Type type, bool finished) in Notification() function
106 void scheduleMainThreadNotification(Notification);
107 void scheduleMainThreadNotification(Notification::Type, double time = 0);
108 void scheduleMainThreadNotification(Notification::Type, bool completed);
242 Vector<Notification> m_queuedNotifications;
/external/webkit/Source/WebKit/chromium/src/
DNotificationPresenterImpl.cpp80 bool NotificationPresenterImpl::show(Notification* notification) in show()
82 return m_presenter->show(PassRefPtr<Notification>(notification)); in show()
85 void NotificationPresenterImpl::cancel(Notification* notification) in cancel()
87 m_presenter->cancel(PassRefPtr<Notification>(notification)); in cancel()
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification) in notificationObjectDestroyed()
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification)); in notificationObjectDestroyed()
DWebNotification.cpp49 class WebNotificationPrivate : public Notification {
144 WebNotification::WebNotification(const WTF::PassRefPtr<Notification>& notification) in WebNotification()
149 WebNotification& WebNotification::operator=(const WTF::PassRefPtr<Notification>& notification) in operator =()
155 WebNotification::operator WTF::PassRefPtr<Notification>() const in operator WTF::PassRefPtr<Notification>()
157 return WTF::PassRefPtr<Notification>(const_cast<WebNotificationPrivate*>(m_private)); in operator WTF::PassRefPtr<Notification>()
DNotificationPresenterImpl.h54 virtual bool show(WebCore::Notification* object);
55 virtual void cancel(WebCore::Notification* object);
56 virtual void notificationObjectDestroyed(WebCore::Notification* object);
/external/chromium/chrome/browser/chromeos/notifications/
Dballoon_collection_impl.h62 virtual void Add(const Notification& notification,
84 bool AddWebUIMessageCallback(const Notification& notification,
92 void AddSystemNotification(const Notification& notification,
100 bool UpdateNotification(const Notification& notification);
105 bool UpdateAndShowNotification(const Notification& notification);
119 virtual Balloon* MakeBalloon(const Notification& notification,
131 Balloon* FindBalloon(const Notification& notification) { in FindBalloon()
Dballoon_collection_impl.cc40 void BalloonCollectionImpl::Add(const Notification& notification, in Add()
53 const Notification& notification, in AddWebUIMessageCallback()
67 const Notification& notification, in AddSystemNotification()
85 const Notification& notification) { in UpdateNotification()
95 const Notification& notification) { in UpdateAndShowNotification()
157 Balloon* BalloonCollectionImpl::MakeBalloon(const Notification& notification, in MakeBalloon()
Dsystem_notification_factory.cc17 Notification SystemNotificationFactory::Create( in Create()
23 return Notification(GURL(), GURL(content_url), string16(), string16(), in Create()
28 Notification SystemNotificationFactory::Create( in Create()
54 return Notification(GURL(), GURL(content_url), string16(), string16(), in Create()
Dnotification_panel.h19 class Notification; variable
156 void MarkStale(const Notification& notification);
226 void MarkStale(const Notification& notification);
233 const Notification& notification);
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebDesktopNotificationsDelegate.cpp45 …static NotificationCOMWrapper* create(Notification* inner) { return new NotificationCOMWrapper(inn… in create()
63 NotificationCOMWrapper(Notification* inner) : m_refCount(1), m_inner(inner) {} in NotificationCOMWrapper()
66 Notification* m_inner;
149 bool WebDesktopNotificationsDelegate::show(Notification* object) in show()
156 void WebDesktopNotificationsDelegate::cancel(Notification* object) in cancel()
162 void WebDesktopNotificationsDelegate::notificationObjectDestroyed(Notification* object) in notificationObjectDestroyed()
DWebDesktopNotificationsDelegate.h49 virtual bool show(WebCore::Notification* object);
50 virtual void cancel(WebCore::Notification* object);
51 virtual void notificationObjectDestroyed(WebCore::Notification* object);
/external/webkit/Source/WebKit/chromium/public/
DWebNotification.h38 namespace WebCore { class Notification; } variable
100 WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
101 WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
102 operator WTF::PassRefPtr<WebCore::Notification>() const;
/external/chromium/net/tools/flip_server/
Dacceptor_thread.h28 class Notification {
30 explicit Notification(bool value) : value_(value) {} in Notification() function
88 Notification quitting_;

12345