/external/webkit/Source/WebCore/notifications/ |
D | Notification.cpp | 49 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 …]
|
D | Notification.h | 61 …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() 115 …Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>); 116 …Notification(const NotificationContents&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<Noti…
|
D | NotificationPresenter.h | 42 class Notification; variable 58 virtual bool show(Notification*) = 0; 61 virtual void cancel(Notification*) = 0; 66 virtual void notificationObjectDestroyed(Notification*) = 0;
|
D | NotificationCenter.h | 51 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/ |
D | notification.cc | 7 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 =()
|
D | notification.h | 20 class Notification { 22 Notification(const GURL& origin_url, 27 Notification(const Notification& notification); 28 ~Notification(); 29 Notification& operator=(const Notification& notification);
|
D | balloon.h | 20 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_;
|
D | balloon.cc | 14 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()
|
D | notification_ui_manager.cc | 28 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()
|
D | notification_ui_manager.h | 21 class Notification; variable 49 virtual void Add(const Notification& notification, 95 bool TryReplacement(const Notification& notification);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | NotificationPresenterClientQt.h | 82 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 …]
|
D | NotificationPresenterClientQt.cpp | 92 …Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in title() 102 …Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in message() 113 …Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationF… in iconData() 126 …Notification* 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/ |
D | MediaPlayerPrivateAVFoundation.cpp | 671 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 …]
|
D | MediaPlayerPrivateAVFoundation.h | 54 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/ |
D | NotificationPresenterImpl.cpp | 80 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()
|
D | WebNotification.cpp | 49 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>()
|
D | NotificationPresenterImpl.h | 54 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/ |
D | balloon_collection_impl.h | 62 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()
|
D | balloon_collection_impl.cc | 40 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()
|
D | system_notification_factory.cc | 17 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()
|
D | notification_panel.h | 19 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/ |
D | WebDesktopNotificationsDelegate.cpp | 45 …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()
|
D | WebDesktopNotificationsDelegate.h | 49 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/ |
D | WebNotification.h | 38 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/ |
D | acceptor_thread.h | 28 class Notification { 30 explicit Notification(bool value) : value_(value) {} in Notification() function 88 Notification quitting_;
|