Home | History | Annotate | Download | only in message_center

Lines Matching refs:Notifications

75   for (Notifications::iterator iter = notifications_.begin();
95 Notifications::iterator iter = GetNotification(old_id);
103 // toast. Notifications coming from websites through the Web Notification API
126 NotificationList::Notifications NotificationList::GetNotificationsByNotifierId(
128 Notifications notifications;
129 for (Notifications::iterator iter = notifications_.begin();
132 notifications.insert(*iter);
134 return notifications;
139 Notifications::iterator iter = GetNotification(notification_id);
148 Notifications::iterator iter = GetNotification(notification_id);
158 Notifications::iterator iter = GetNotification(notification_id);
167 Notifications::iterator iter = GetNotification(id);
176 for (Notifications::iterator iter = notifications_.begin();
194 // Collect notifications that should be shown as popups. Start from oldest.
195 for (Notifications::const_reverse_iterator iter = notifications_.rbegin();
225 Notifications::iterator iter = GetNotification(id);
242 Notifications::iterator iter = GetNotification(id);
255 Notifications::iterator iter = GetNotification(id);
264 for (Notifications::iterator iter = notifications_.begin();
273 Notifications::iterator iter = GetNotification(id);
279 NotificationList::Notifications NotificationList::GetVisibleNotifications(
281 Notifications result;
282 for (Notifications::const_iterator iter = notifications_.begin();
305 Notifications notifications = GetVisibleNotifications(blockers);
307 for (Notifications::const_iterator iter = notifications.begin();
308 iter != notifications.end(); ++iter) {
315 NotificationList::Notifications::iterator NotificationList::GetNotification(
317 for (Notifications::iterator iter = notifications_.begin();
325 void NotificationList::EraseNotification(Notifications::iterator iter) {
333 Notifications::iterator iter = GetNotification(notification->id());