Searched refs:Notification (Results 1 - 25 of 80) sorted by relevance

1234

/external/chromium/chrome/browser/notifications/
H A Dnotification.cc7 Notification::Notification(const GURL& origin_url, function in class:Notification
19 Notification::Notification(const Notification& notification) function in class:Notification
27 Notification::~Notification() {}
29 Notification& Notification::operator=(const Notification
[all...]
H A Dnotification.h20 class Notification { class
22 Notification(const GURL& origin_url,
27 Notification(const Notification& notification);
28 ~Notification();
29 Notification& operator=(const Notification& notification);
H A Dballoon_collection_base.h18 class Notification;
53 Balloon* FindBalloon(const Notification& notification);
H A Dballoon.cc14 Balloon::Balloon(const Notification& notification, Profile* profile,
17 notification_(new Notification(notification)),
46 void Balloon::Update(const Notification& notification) {
48 notification_.reset(new Notification(notification));
H A Dballoon.h20 class Notification;
48 // Represents a Notification on the screen.
51 Balloon(const Notification& notification,
56 const Notification& notification() const { return *notification_.get(); }
99 virtual void Update(const Notification& notification);
116 scoped_ptr<Notification> notification_;
H A Dnotification_ui_manager.h21 class Notification;
49 virtual void Add(const Notification& notification,
95 bool TryReplacement(const Notification& notification);
/external/webkit/Source/WebCore/notifications/
H A DNotification.cpp36 #include "Notification.h"
49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider) function in class:WebCore::Notification
69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider) function in class:WebCore::Notification
88 Notification::~Notification()
96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
98 return adoptRef(new Notification(ur
[all...]
H A DNotificationPresenter.h42 class Notification;
58 virtual bool show(Notification*) = 0;
61 virtual void cancel(Notification*) = 0;
63 // Informs the presenter that a Notification object has been destroyed
66 virtual void notificationObjectDestroyed(Notification*) = 0;
H A DNotificationCenter.idl37 [V8Custom] Notification createHTMLNotification(in DOMString url) raises(Exception);
38 [V8Custom] Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(Exception);
H A DNotification.h61 class Notification : public RefCounted<Notification>, public ActiveDOMObject, public ThreadableLoaderClient, public EventTarget { class in namespace:WebCore
64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
65 static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
67 virtual ~Notification();
89 using RefCounted<Notification>::ref;
90 using RefCounted<Notification>::deref;
94 virtual Notification* toNotification() { return this; }
115 Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
116 Notification(cons
[all...]
H A DNotificationCenter.h34 #include "Notification.h"
51 PassRefPtr<Notification> createHTMLNotification(const String& URI, ExceptionCode& ec)
61 return Notification::create(scriptExecutionContext()->completeURL(URI), scriptExecutionContext(), ec, this);
64 PassRefPtr<Notification> createNotification(const String& iconURI, const String& title, const String& body, ExceptionCode& ec)
71 return Notification::create(contents, scriptExecutionContext(), ec, this);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.h35 #include "Notification.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*);
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotificationManager.java3 import android.app.Notification;
17 private Map<Integer, Notification> notifications = new HashMap<Integer, Notification>();
21 public void notify(int id, Notification notification)
27 public void notify(String tag, int id, Notification notification) {
61 public Notification getNotification(int id) {
65 public Notification getNotification(String tag) {
70 public List<Notification> getAllNotifications() {
71 return new ArrayList<Notification>(notifications.values());
H A DShadowNotification.java3 import android.app.Notification;
11 @Implements(Notification.class)
14 public Notification getRealNotification() {
19 Notification realNotification;
H A DShadowService.java4 import android.app.Notification;
20 private Notification lastForegroundNotification;
58 public final void startForeground(int id, Notification notification) {
68 public Notification getLastForegroundNotification() {
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.h32 #include <WebCore/Notification.h>
49 virtual bool show(WebCore::Notification* object);
50 virtual void cancel(WebCore::Notification* object);
51 virtual void notificationObjectDestroyed(WebCore::Notification* object);
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification_factory.h22 static Notification Create(
28 static Notification Create(
H A 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) {
H A Dsystem_notification_factory.cc17 Notification SystemNotificationFactory::Create(
23 return Notification(GURL(), GURL(content_url), string16(), string16(),
28 Notification SystemNotificationFactory::Create(
54 return Notification(GURL(), GURL(content_url), string16(), string16(),
H A Dballoon_collection_impl.cc40 void BalloonCollectionImpl::Add(const Notification& notification,
53 const Notification& notification,
67 const Notification& notification,
85 const Notification& notification) {
95 const Notification& notification) {
157 Balloon* BalloonCollectionImpl::MakeBalloon(const Notification& notification,
/external/webkit/Source/WebKit/chromium/src/
H A DNotificationPresenterImpl.cpp37 #include "Notification.h"
80 bool NotificationPresenterImpl::show(Notification* notification)
82 return m_presenter->show(PassRefPtr<Notification>(notification));
85 void NotificationPresenterImpl::cancel(Notification* notification)
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification)
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
H A DNotificationPresenterImpl.h54 virtual bool show(WebCore::Notification* object);
55 virtual void cancel(WebCore::Notification* object);
56 virtual void notificationObjectDestroyed(WebCore::Notification* object);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DNotificationTest.java4 import android.app.Notification;
19 Notification notification = new Notification();
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp671 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification::Type type, double time)
673 scheduleMainThreadNotification(Notification(type, time));
676 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification::Type type, bool finished)
678 scheduleMainThreadNotification(Notification(type, finished));
681 void MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(Notification notification)
710 Notification notification = Notification();
733 case Notification::ItemDidPlayToEndTime:
736 case Notification::ItemTracksChanged:
739 case Notification
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebNotification.h38 namespace WebCore { class Notification; }
100 WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
101 WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
102 operator WTF::PassRefPtr<WebCore::Notification>() const;

Completed in 1379 milliseconds

1234