Home
last modified time | relevance | path

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

/external/chromium_org/ui/message_center/views/
Dtoast_contents_view.cc43 gfx::Size ToastContentsView::GetToastSizeForView(views::View* view) { in GetToastSizeForView()
48 ToastContentsView::ToastContentsView( in ToastContentsView() function in message_center::ToastContentsView
69 ToastContentsView::~ToastContentsView() { in ~ToastContentsView()
74 void ToastContentsView::SetContents(MessageView* view, in SetContents()
90 void ToastContentsView::RevealWithAnimation(gfx::Point origin) { in RevealWithAnimation()
106 void ToastContentsView::CloseWithAnimation() { in CloseWithAnimation()
113 void ToastContentsView::SetBoundsInstantly(gfx::Rect new_bounds) { in SetBoundsInstantly()
123 void ToastContentsView::SetBoundsWithAnimation(gfx::Rect new_bounds) { in SetBoundsWithAnimation()
148 void ToastContentsView::StartFadeIn() { in StartFadeIn()
160 void ToastContentsView::StartFadeOut() { in StartFadeOut()
[all …]
Dmessage_popup_collection.h93 void OnMouseEntered(ToastContentsView* toast_entered);
94 void OnMouseExited(ToastContentsView* toast_exited);
110 void ForgetToast(ToastContentsView* toast);
135 typedef std::list<ToastContentsView*> Toasts;
141 void RemoveToast(ToastContentsView* toast, bool mark_as_shown);
162 int GetBaseLine(ToastContentsView* last_toast) const;
171 ToastContentsView* FindToast(const std::string& notification_id) const;
200 ToastContentsView* latest_toast_entered_;
Dmessage_popup_collection.cc197 int view_height = ToastContentsView::GetToastSizeForView(view).height(); in UpdateWidgets()
205 ToastContentsView* toast = in UpdateWidgets()
206 new ToastContentsView((*iter)->id(), weak_factory_.GetWeakPtr()); in UpdateWidgets()
240 void MessagePopupCollection::OnMouseEntered(ToastContentsView* toast_entered) { in OnMouseEntered()
251 void MessagePopupCollection::OnMouseExited(ToastContentsView* toast_exited) { in OnMouseExited()
273 ToastContentsView* toast = toasts_.front(); in CloseAllWidgets()
287 void MessagePopupCollection::ForgetToast(ToastContentsView* toast) { in ForgetToast()
292 void MessagePopupCollection::RemoveToast(ToastContentsView* toast, in RemoveToast()
407 int MessagePopupCollection::GetBaseLine(ToastContentsView* last_toast) const { in GetBaseLine()
532 ToastContentsView* MessagePopupCollection::FindToast( in FindToast()
Dtoast_contents_view.h37 class ToastContentsView : public views::WidgetDelegateView,
44 ToastContentsView(const std::string& notification_id,
46 virtual ~ToastContentsView();
141 DISALLOW_COPY_AND_ASSIGN(ToastContentsView);
Dmessage_popup_collection_unittest.cc75 ToastContentsView* GetToast(const std::string& id) { in GetToast()