Home
last modified time | relevance | path

Searched refs:notification_map_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/file_manager/
Ddesktop_notifications.cc209 STLDeleteContainerPairSecondPointers(notification_map_.begin(), in ~DesktopNotifications()
210 notification_map_.end()); in ~DesktopNotifications()
346 if (notification_map_.find(notification_id) != notification_map_.end()) { in ShowNotificationById()
350 DCHECK(notification_map_.find(notification_id) == notification_map_.end()); in ShowNotificationById()
355 notification_map_[notification_id] = new_message; in ShowNotificationById()
360 NotificationMap::iterator it = notification_map_.find(notification_id); in HideNotificationById()
361 if (it != notification_map_.end()) { in HideNotificationById()
372 NotificationMap::iterator it = notification_map_.find(notification_id); in RemoveNotificationById()
373 if (it != notification_map_.end()) { in RemoveNotificationById()
375 notification_map_.erase(it); in RemoveNotificationById()
[all …]
Ddesktop_notifications.h71 return notification_map_.size(); in GetNotificationCountForTest()
75 return notification_map_.find(id) != notification_map_.end(); in HasNotificationForTest()
97 NotificationMap notification_map_; variable
/external/chromium_org/chrome/browser/notifications/
Dnotification_ui_manager_mac.mm165 notification_map_.insert(std::make_pair(
182 for (NotificationMap::iterator it = notification_map_.begin();
183 it != notification_map_.end(); ++it) {
195 NotificationMap::iterator it = notification_map_.find(notification_id);
196 if (it == notification_map_.end())
207 for (NotificationMap::iterator it = notification_map_.begin();
208 it != notification_map_.end();) {
224 for (NotificationMap::iterator it = notification_map_.begin();
225 it != notification_map_.end();) {
243 for (NotificationMap::iterator it = notification_map_.begin();
[all …]
Dnotification_ui_manager_mac.h82 NotificationMap notification_map_; variable
/external/chromium_org/win8/metro_driver/
Dchrome_app_view.cc330 notification_map_[notification.id].reset(notification_handler); in DisplayNotification()
339 NotificationMap::iterator index = notification_map_.find(notification); in CancelNotification()
340 if (index == notification_map_.end()) { in CancelNotification()
348 notification_map_.erase(index); in CancelNotification()
358 return notification_map_.find(notification) != notification_map_.end(); in IsValidNotification()
873 notification_map_.clear(); in Uninitialize()
Dchrome_app_view.h134 NotificationMap notification_map_; variable