Home
last modified time | relevance | path

Searched refs:blockers_ (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/ui/message_center/
Dmessage_center_impl.cc444 if (std::find(blockers_.begin(), blockers_.end(), blocker) != in AddNotificationBlocker()
445 blockers_.end()) { in AddNotificationBlocker()
449 blockers_.push_back(blocker); in AddNotificationBlocker()
455 std::find(blockers_.begin(), blockers_.end(), blocker); in RemoveNotificationBlocker()
456 if (iter == blockers_.end()) in RemoveNotificationBlocker()
459 blockers_.erase(iter); in RemoveNotificationBlocker()
465 notification_list_->GetPopupNotifications(blockers_, &blocked_ids); in OnBlockingStateChanged()
479 notification_list_->GetVisibleNotifications(blockers_)); in OnBlockingStateChanged()
532 notification_list_->HasPopupNotifications(blockers_); in HasPopupNotifications()
557 return notification_list_->GetPopupNotifications(blockers_, NULL); in GetPopupNotifications()
[all …]
Dnotification_list_unittest.cc80 return notification_list()->GetPopupNotifications(blockers_, NULL); in GetPopups()
96 const NotificationBlockers& blockers() const { return blockers_; } in blockers()
106 NotificationBlockers blockers_; member in message_center::NotificationListTest
Dmessage_center_impl.h230 std::vector<NotificationBlocker*> blockers_; variable
/external/chromium_org/chrome/browser/notifications/
Dmessage_center_notification_manager.cc76 blockers_.push_back( in MessageCenterNotificationManager()
80 blockers_.push_back(new ScreenLockNotificationBlocker(message_center)); in MessageCenterNotificationManager()
82 blockers_.push_back(new FullscreenNotificationBlocker(message_center)); in MessageCenterNotificationManager()
Dmessage_center_notification_manager.h228 ScopedVector<message_center::NotificationBlocker> blockers_; variable