HomeSort by relevance Sort by last modified time
    Searched refs:Notifications (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/ui/message_center/
notification_list.cc 75 for (Notifications::iterator iter = notifications_.begin();
95 Notifications::iterator iter = GetNotification(old_id);
124 NotificationList::Notifications NotificationList::GetNotificationsByNotifierId(
126 Notifications notifications; local
127 for (Notifications::iterator iter = notifications_.begin();
130 notifications.insert(*iter);
132 return notifications;
137 Notifications::iterator iter = GetNotification(notification_id);
146 Notifications::iterator iter = GetNotification(notification_id)
303 Notifications notifications = GetVisibleNotifications(blockers); local
    [all...]
notification_list.h 36 // Comparers used to auto-sort the lists of Notifications.
45 // A helper class to manage the list of notifications.
48 // Auto-sorted set. Matches the order in which Notifications are shown in
50 typedef std::set<Notification*, ComparePriorityTimestampSerial> Notifications;
52 // Auto-sorted set used to return the Notifications to be shown as popup
72 Notifications GetNotificationsByNotifierId(const NotifierId& notifier_id);
93 // means that all notifications have been shown).
96 // Returns the recent notifications of the priority higher then LOW,
98 // used to limit the number of notifications for the DEFAULT priority.
101 // which notifications are blocked
    [all...]
fake_message_center.h 33 virtual const NotificationList::Notifications& GetVisibleNotifications()
78 const NotificationList::Notifications empty_notifications_;
fake_message_center.cc 54 const NotificationList::Notifications&
message_center.h 20 // [Add|Remove|Update]Notification to create and update notifications in the
72 // Gets all notifications to be shown to the user in the message center. Note
75 virtual const NotificationList::Notifications& GetVisibleNotifications() = 0;
77 // Gets all notifications being shown as popups. This should not be affected
78 // by the change queue since notifications are not held up while the state is
105 // Sets the large image for the notifications of type == TYPE_IMAGE. Specified
116 // Searches through the notifications and disables any that match the
message_center_impl.h 161 virtual const NotificationList::Notifications& GetVisibleNotifications()
214 void Rebuild(const NotificationList::Notifications& notifications);
217 NotificationList::Notifications visible_notifications;
232 // Queue for the notifications to delay the addition/updates when the message
notification_list_unittest.cc 88 NotificationList::Notifications::iterator iter =
112 bool IsInNotifications(const NotificationList::Notifications& notifications,
114 for (NotificationList::Notifications::const_iterator iter =
115 notifications.begin(); iter != notifications.end(); ++iter) {
200 const NotificationList::Notifications notifications = local
202 EXPECT_EQ(replaced, (*notifications.begin())->id());
203 EXPECT_EQ(UTF8ToUTF16("newtitle"), (*notifications.begin())->title())
362 NotificationList::Notifications notifications = local
434 const NotificationList::Notifications notifications = local
561 const NotificationList::Notifications notifications = local
594 NotificationList::Notifications notifications = local
    [all...]
message_center_impl.cc 405 const NotificationList::Notifications& notifications) {
406 visible_notifications = notifications;
412 for (NotificationList::Notifications::const_iterator iter =
550 const NotificationList::Notifications&
597 // We will allow notifications that are progress types (and stay progress
605 // This shouldn't be an issue in practice since only W3C notifications
606 // change the ID on update, and they don't have progress type notifications.
613 // Updates are allowed only for progress notifications.
665 NotificationList::Notifications notifications local
690 const NotificationList::Notifications notifications = local
    [all...]
message_center_impl_unittest.cc 182 const NotificationList::Notifications& notifications,
184 for (NotificationList::Notifications::const_iterator iter =
185 notifications.begin(); iter != notifications.end(); ++iter) {
378 // Block all notifications. All popups are gone and message center should be
439 // Unblock notifications, the id1 should appear as a popup.
519 // TotalNotificationBlocker suppresses showing notifications even from the list.
551 NotificationList::Notifications notifications local
769 const NotificationList::Notifications& notifications = local
    [all...]
message_center_tray_unittest.cc 290 // The first item is to disable notifications from the notifier id. It also
291 // removes all notifications from the same notifier, i.e. id1 and id3.
293 NotificationList::Notifications notifications = local
295 EXPECT_EQ(1u, notifications.size());
296 EXPECT_EQ(id2, (*notifications.begin())->id());
302 // disabling notifications.
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 8 #include <windows.ui.notifications.h>
45 HRESULT OnActivate(winui::Notifications::IToastNotification* notification,
49 mswr::ComPtr<winui::Notifications::IToastNotifier> notifier_;
50 mswr::ComPtr<winui::Notifications::IToastNotification> notification_;
toast_notification_handler.cc 21 winui::Notifications::ToastNotification*, IInspectable*>
25 winui::Notifications::ToastNotification*,
26 winui::Notifications::ToastDismissedEventArgs*> ToastDismissedHandler;
142 mswr::ComPtr<winui::Notifications::IToastNotificationManagerStatics>
152 winui::Notifications::ToastTemplateType_ToastText02,
189 mswr::ComPtr<winui::Notifications::IToastNotificationFactory>
240 winui::Notifications::IToastNotification* notification,
  /external/chromium_org/chrome/browser/notifications/
google_now_notification_stats_collector.cc 5 #include "chrome/browser/notifications/google_now_notification_stats_collector.h"
11 #include "chrome/browser/notifications/notification.h"
12 #include "chrome/browser/notifications/notification_ui_manager.h"
66 typedef message_center::NotificationList::Notifications Notifications;
67 const Notifications visible_notifications =
70 for (Notifications::iterator iter = visible_notifications.begin();
notification_browsertest.cc 19 #include "chrome/browser/notifications/desktop_notification_service.h"
20 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
21 #include "chrome/browser/notifications/notification.h"
50 const char kExpectedIconUrl[] = "/notifications/no_such_file.png";
154 "/notifications/notification_tester.html");
369 "/notifications/notifications_request_function.html"));
397 message_center::NotificationList::Notifications notifications = local
400 (*notifications.rbegin())->title());
402 (*notifications.rbegin())->message())
416 message_center::NotificationList::Notifications notifications = local
595 message_center::NotificationList::Notifications notifications = local
775 message_center::NotificationList::Notifications notifications = local
    [all...]
  /external/chromium_org/ash/display/
display_error_observer_chromeos.cc 61 message_center::NotificationList::Notifications notifications = local
63 for (message_center::NotificationList::Notifications::const_iterator iter =
64 notifications.begin(); iter != notifications.end(); ++iter) {
resolution_notification_controller_unittest.cc 99 const message_center::NotificationList::Notifications& notifications = local
101 for (message_center::NotificationList::Notifications::const_iterator iter =
102 notifications.begin(); iter != notifications.end(); ++iter) {
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.idl 37 RuntimeEnabled=Notifications,
  /external/chromium_org/ash/system/chromeos/session/
tray_session_length_limit_unittest.cc 45 const message_center::NotificationList::Notifications& notifications = local
47 for (message_center::NotificationList::Notifications::const_iterator iter =
48 notifications.begin(); iter != notifications.end(); ++iter) {
77 // No notifications when no session limit.
  /external/chromium_org/ui/message_center/views/
message_center_bubble.cc 120 const NotificationList::Notifications& notifications = local
122 message_center_view_->SetNotifications(notifications);
message_center_view.h 55 void SetNotifications(const NotificationList::Notifications& notifications);
message_center_view.cc 104 // Displays a list of messages for rich notifications. Functions as an array of
139 // Animates all notifications below target upwards to align with the top of
142 // Animates all notifications above target downwards to align with the top of
438 // Find first notification below target (or all notifications if no
450 // Animate notifications below target upwards.
465 // Find first notification above target (or all notifications if no
478 // Animate notifications above target downwards.
612 const NotificationList::Notifications& notifications) {
619 for (NotificationList::Notifications::const_iterator iter
827 const NotificationList::Notifications& notifications = local
884 const NotificationList::Notifications& notifications = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_apitest.cc 10 #include "chrome/browser/extensions/api/notifications/notifications_api.h"
13 #include "chrome/browser/notifications/notification.h"
14 #include "chrome/browser/notifications/notification_ui_manager.h"
72 // A sequential list of user gesture notifications from the test extension(s).
99 ASSERT_TRUE(RunExtensionTest("notifications/api/basic_usage")) << message_;
103 ASSERT_TRUE(RunExtensionTest("notifications/api/events")) << message_;
107 ASSERT_TRUE(RunExtensionTest("notifications/api/csp")) << message_;
112 LoadExtensionAndWait("notifications/api/by_user");
144 ASSERT_TRUE(RunExtensionTest("notifications/api/partial_update")) << message_;
152 const message_center::NotificationList::Notifications& notifications local
256 const message_center::NotificationList::Notifications& notifications = local
    [all...]
  /external/chromium_org/components/password_manager/core/browser/
password_store_default_unittest.cc 117 TEST_F(PasswordStoreDefaultTest, Notifications) {
  /external/chromium_org/chrome/browser/extensions/
extension_crash_recovery_browsertest.cc 8 #include "chrome/browser/notifications/notification.h"
9 #include "chrome/browser/notifications/notification_delegate.h"
10 #include "chrome/browser/notifications/notification_ui_manager.h"
137 message_center::NotificationList::Notifications::reverse_iterator it =
150 message_center::NotificationList::Notifications::reverse_iterator it =
425 // canceled notifications do not immediately go away.
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_widget_delegate.cc 161 const NotificationList::Notifications& notifications = local
163 SetNotifications(notifications);

Completed in 306 milliseconds

1 2