Home
last modified time | relevance | path

Searched refs:toasts_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/ui/message_center/views/
Dmessage_popup_collection.cc124 int base = GetBaseLine(toasts_.empty() ? NULL : toasts_.back()); in UpdateWidgets()
151 toasts_.push_back(toast); in UpdateWidgets()
216 while (!toasts_.empty()) { in CloseAllWidgets()
217 ToastContentsView* toast = toasts_.front(); in CloseAllWidgets()
218 toasts_.pop_front(); in CloseAllWidgets()
232 toasts_.remove(toast); in ForgetToast()
251 for (Toasts::const_iterator iter = toasts_.begin(); iter != toasts_.end();) { in RepositionWidgets()
277 if (toasts_.empty()) in RepositionWidgetsWithTarget()
284 if (top_down ? toasts_.back()->origin().y() < target_top_edge_ in RepositionWidgetsWithTarget()
285 : toasts_.back()->origin().y() > target_top_edge_) in RepositionWidgetsWithTarget()
[all …]
Dmessage_popup_collection_unittest.cc55 return collection_->toasts_.size(); in GetToastCounts()
86 collection_->toasts_.begin(); in GetToast()
87 iter != collection_->toasts_.end(); ++iter) { in GetToast()
Dmessage_popup_collection.h154 Toasts toasts_; variable