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

12345678910

/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotificationClient.h42 class Notification;
56 virtual bool show(Notification*) = 0;
59 virtual void close(Notification*) = 0;
61 // Informs the presenter that a Notification object has been destroyed
64 virtual void notificationObjectDestroyed(Notification*) = 0;
H A DNotification.cpp32 #include "modules/notifications/Notification.h"
45 Notification* Notification::create(ExecutionContext* context, const String& title, const NotificationOptions& options)
48 Notification* notification = adoptRefCountedGarbageCollectedWillBeNoop(new Notification(title, context, &client));
64 Notification::Notification(const String& title, ExecutionContext* context, NotificationClient* client) function in class:blink::Notification
70 , m_asyncRunner(this, &Notification::show)
77 Notification::~Notification()
[all...]
H A DNotification.h50 class Notification : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<Notification>, public ActiveDOMObject, public EventTargetWithInlineData { class in namespace:blink
51 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<Notification>);
53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Notification);
55 static Notification* create(ExecutionContext*, const String& title, const NotificationOptions&);
57 virtual ~Notification();
95 Notification(const String& title, ExecutionContext*, NotificationClient*);
129 AsyncMethodRunner<Notification> m_asyncRunner;
/external/chromium_org/chrome/browser/notifications/
H A Dnotification.cc7 Notification::Notification(const GURL& origin_url, function in class:Notification
15 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
29 Notification::Notification( function in class:Notification
41 : message_center::Notification(type,
57 Notification::Notification(const Notification& notification) function in class:Notification
58 : message_center::Notification(notificatio
[all...]
H A Dnotification.h28 class Notification : public message_center::Notification { class in inherits:message_center::Notification
32 Notification(const GURL& origin_url,
41 Notification(
54 Notification(const Notification& notification);
55 virtual ~Notification();
56 Notification& operator=(const Notification& notification);
H A Dnotification_ui_manager.h15 class Notification;
29 virtual void Add(const Notification& notification, Profile* profile) = 0;
33 virtual bool Update(const Notification& notification, Profile* profile) = 0;
37 virtual const Notification* FindById(
H A Dnotification_ui_manager_android.cc20 void NotificationUIManagerAndroid::Add(const Notification& notification,
26 bool NotificationUIManagerAndroid::Update(const Notification& notification,
31 const Notification* NotificationUIManagerAndroid::FindById(
H A Dnotification_ui_manager_android.h10 // Implementation of the Notification UI Manager for Android, which defers to
18 virtual void Add(const Notification& notification, Profile* profile) OVERRIDE;
19 virtual bool Update(const Notification& notification,
21 virtual const Notification* FindById(
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Ddevice_handler.js43 * Notification type.
50 DeviceHandler.Notification = function(prefix, title, message, opt_buttonLabel) {
86 * @type {DeviceHandler.Notification}
89 DeviceHandler.Notification.DEVICE_NAVIGATION = new DeviceHandler.Notification(
96 * @type {DeviceHandler.Notification}
99 DeviceHandler.Notification.DEVICE_FAIL = new DeviceHandler.Notification(
105 * @type {DeviceHandler.Notification}
108 DeviceHandler.Notification
[all...]
/external/chromium_org/jingle/notifier/listener/
H A Dfake_push_client_observer.h24 const Notification& notification) OVERRIDE;
27 const Notification& last_incoming_notification() const;
31 Notification last_incoming_notification_;
H A Dfake_push_client_observer.cc24 const Notification& notification) {
33 const Notification&
H A Dnotification_defines.cc57 Notification::Notification() {} function in class:notifier::Notification
58 Notification::~Notification() {}
60 bool Notification::Equals(const Notification& other) const {
67 std::string Notification::ToString() const {
H A Dpush_notifications_send_update_task.h26 buzz::XmppTaskParentInterface* parent, const Notification& notification);
35 const Notification& notification, const buzz::Jid& to_jid_bare);
37 const Notification notification_;
H A Dnotification_defines.h48 struct Notification { struct in namespace:notifier
49 Notification();
50 ~Notification();
59 bool Equals(const Notification& other) const;
/external/chromium_org/third_party/WebKit/Source/web/
H A DNotificationPresenterImpl.h48 virtual bool show(Notification*) OVERRIDE;
49 virtual void close(Notification*) OVERRIDE;
50 virtual void notificationObjectDestroyed(Notification*) OVERRIDE;
H A DNotificationPresenterImpl.cpp35 #include "modules/notifications/Notification.h"
56 bool NotificationPresenterImpl::show(Notification* notification)
61 void NotificationPresenterImpl::close(Notification* notification)
69 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification)
/external/chromium_org/ui/message_center/
H A Dnotification.cc51 Notification::Notification(NotificationType type, function in class:message_center::Notification
73 Notification::Notification(const Notification& other) function in class:message_center::Notification
87 Notification& Notification::operator=(const Notification& other) {
104 Notification::~Notification() {}
[all...]
H A Dnotification_list.h32 class Notification;
38 bool operator()(Notification* n1, Notification* n2);
42 bool operator()(Notification* n1, Notification* n2);
49 // Notification Center.
50 typedef std::set<Notification*, ComparePriorityTimestampSerial> Notifications;
54 typedef std::set<Notification*, CompareTimestampSerial> PopupNotifications;
65 void AddNotification(scoped_ptr<Notification> notification);
68 scoped_ptr<Notification> new_notificatio
[all...]
/external/chromium_org/ui/message_center/views/
H A Dnotification_view.h44 const Notification& notification,
58 const Notification& notification) OVERRIDE;
73 const Notification& notification);
87 void CreateOrUpdateViews(const Notification& notification);
88 void SetAccessibleName(const Notification& notification);
90 void CreateOrUpdateTitleView(const Notification& notification);
91 void CreateOrUpdateMessageView(const Notification& notification);
92 void CreateOrUpdateContextMessageView(const Notification& notification);
93 void CreateOrUpdateProgressBarView(const Notification& notification);
94 void CreateOrUpdateListItemViews(const 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());
/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
H A Dbackground.js8 "Notification.requestPermission" beforehand).
14 new Notification(hour + time[2] + ' ' + period, {
28 if (window.Notification) {
/external/chromium_org/ash/system/chromeos/supervised/
H A Dtray_supervised_user_unittest.cc26 message_center::Notification* GetPopup();
32 message_center::Notification* TraySupervisedUserTest::GetPopup() {
72 message_center::Notification* notification = GetPopup();
73 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification);
81 message_center::Notification* notification = GetPopup();
82 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification);
/external/chromium_org/ui/message_center/cocoa/
H A Dnotification_controller.h17 class Notification;
29 const message_center::Notification* notification_;
66 - (id)initWithNotification:(const message_center::Notification*)notification
71 - (NSRect)updateNotification:(const message_center::Notification*)notification;
77 - (const message_center::Notification*)notification;
80 // rather than the model object, so it's safe to use after the Notification has
H A Dpopup_controller.h18 class Notification;
61 - (id)initWithNotification:(const message_center::Notification*)notification
69 - (const message_center::Notification*)notification;
72 // rather than the model object, so it's safe to use after the Notification has
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DNotificationTest.java4 import android.app.Notification;
19 Notification notification = new Notification();

Completed in 346 milliseconds

12345678910