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.cc45 gfx::Size ToastContentsView::GetToastSizeForView(const views::View* view) { in GetToastSizeForView()
50 ToastContentsView::ToastContentsView( in ToastContentsView() function in message_center::ToastContentsView
71 ToastContentsView::~ToastContentsView() { in ~ToastContentsView()
76 void ToastContentsView::SetContents(MessageView* view, in SetContents()
92 void ToastContentsView::UpdateContents(const Notification& notification, in UpdateContents()
101 void ToastContentsView::RevealWithAnimation(gfx::Point origin) { in RevealWithAnimation()
117 void ToastContentsView::CloseWithAnimation() { in CloseWithAnimation()
124 void ToastContentsView::SetBoundsInstantly(gfx::Rect new_bounds) { in SetBoundsInstantly()
134 void ToastContentsView::SetBoundsWithAnimation(gfx::Rect new_bounds) { in SetBoundsWithAnimation()
159 void ToastContentsView::StartFadeIn() { in StartFadeIn()
[all …]
Dmessage_popup_collection.h79 void OnMouseEntered(ToastContentsView* toast_entered);
80 void OnMouseExited(ToastContentsView* toast_exited);
96 void ForgetToast(ToastContentsView* toast);
106 typedef std::list<ToastContentsView*> Toasts;
112 void RemoveToast(ToastContentsView* toast, bool mark_as_shown);
128 int GetBaseLine(ToastContentsView* last_toast) const;
137 ToastContentsView* FindToast(const std::string& notification_id) const;
162 ToastContentsView* latest_toast_entered_;
Dmessage_popup_collection.cc138 int view_height = ToastContentsView::GetToastSizeForView(view).height(); in UpdateWidgets()
147 ToastContentsView* toast = in UpdateWidgets()
148 new ToastContentsView((*iter)->id(), weak_factory_.GetWeakPtr()); in UpdateWidgets()
184 void MessagePopupCollection::OnMouseEntered(ToastContentsView* toast_entered) { in OnMouseEntered()
195 void MessagePopupCollection::OnMouseExited(ToastContentsView* toast_exited) { in OnMouseExited()
217 ToastContentsView* toast = toasts_.front(); in CloseAllWidgets()
231 void MessagePopupCollection::ForgetToast(ToastContentsView* toast) { in ForgetToast()
236 void MessagePopupCollection::RemoveToast(ToastContentsView* toast, in RemoveToast()
317 int MessagePopupCollection::GetBaseLine(ToastContentsView* last_toast) const { in GetBaseLine()
393 ToastContentsView* toast_contents_view = *toast_iter; in OnNotificationUpdated()
[all …]
Dtoast_contents_view.h37 class ToastContentsView : public views::WidgetDelegateView,
44 ToastContentsView(const std::string& notification_id,
46 virtual ~ToastContentsView();
138 DISALLOW_COPY_AND_ASSIGN(ToastContentsView);
Dmessage_popup_collection_unittest.cc84 ToastContentsView* GetToast(const std::string& id) { in GetToast()