| Index: ui/message_center/views/toast_contents_view.cc
|
| diff --git a/ui/message_center/views/toast_contents_view.cc b/ui/message_center/views/toast_contents_view.cc
|
| index 6c139343ba5c4b67739abc821c566f34fa6e6a90..a1bc249e7fa1fde47f63b16204f0b63fbabc72ce 100644
|
| --- a/ui/message_center/views/toast_contents_view.cc
|
| +++ b/ui/message_center/views/toast_contents_view.cc
|
| @@ -300,15 +300,13 @@ void ToastContentsView::RemoveNotification(
|
| collection_->RemoveNotification(notification_id, by_user);
|
| }
|
|
|
| -void ToastContentsView::DisableNotificationsFromThisSource(
|
| - const NotifierId& notifier_id) {
|
| - if (collection_)
|
| - collection_->DisableNotificationsFromThisSource(notifier_id);
|
| -}
|
| -
|
| -void ToastContentsView::ShowNotifierSettingsBubble() {
|
| - if (collection_)
|
| - collection_->ShowNotifierSettingsBubble();
|
| +scoped_ptr<ui::MenuModel> ToastContentsView::CreateMenuModel(
|
| + const NotifierId& notifier_id,
|
| + const base::string16& display_source) {
|
| + // Should not reach, the context menu should be handled in
|
| + // MessagePopupCollection.
|
| + NOTREACHED();
|
| + return scoped_ptr<ui::MenuModel>();
|
| }
|
|
|
| bool ToastContentsView::HasClickedListener(
|
|
|