Index: ui/message_center/message_center_impl.cc |
diff --git a/ui/message_center/message_center_impl.cc b/ui/message_center/message_center_impl.cc |
index 012d0dfeb4a2aaf101e93812edc0c3a5c3dd3636..8d8b6d2d1b08e331a96abf6edcb39c7dcde7675e 100644 |
--- a/ui/message_center/message_center_impl.cc |
+++ b/ui/message_center/message_center_impl.cc |
@@ -212,7 +212,7 @@ void MessageCenterImpl::ExpandNotification(const std::string& id) { |
void MessageCenterImpl::ClickOnNotification(const std::string& id) { |
if (HasPopupNotifications()) |
- notification_list_->MarkSinglePopupAsShown(id, true); |
+ MarkSinglePopupAsShown(id, true); |
FOR_EACH_OBSERVER(MessageCenterObserver, observer_list_, |
OnNotificationClicked(id)); |
} |
@@ -220,7 +220,7 @@ void MessageCenterImpl::ClickOnNotification(const std::string& id) { |
void MessageCenterImpl::ClickOnNotificationButton(const std::string& id, |
int button_index) { |
if (HasPopupNotifications()) |
- notification_list_->MarkSinglePopupAsShown(id, true); |
+ MarkSinglePopupAsShown(id, true); |
FOR_EACH_OBSERVER(MessageCenterObserver, observer_list_, |
OnNotificationButtonClicked(id, button_index)); |
} |