This source file includes following definitions.
- HasClickedListener
- ButtonClick
- Display
- Error
- Close
- HasClickedListener
- ButtonClick
#include "ui/message_center/notification_delegate.h"
namespace message_center {
bool NotificationDelegate::HasClickedListener() { return false; }
void NotificationDelegate::ButtonClick(int button_index) {}
HandleNotificationClickedDelegate::HandleNotificationClickedDelegate(
const base::Closure& closure)
: closure_(closure) {
}
HandleNotificationClickedDelegate::~HandleNotificationClickedDelegate() {
}
void HandleNotificationClickedDelegate::Display() {
}
void HandleNotificationClickedDelegate::Error() {
}
void HandleNotificationClickedDelegate::Close(bool by_user) {
}
bool HandleNotificationClickedDelegate::HasClickedListener() {
return !closure_.is_null();
}
void HandleNotificationClickedDelegate::Click() {
if (!closure_.is_null())
closure_.Run();
}
void HandleNotificationClickedDelegate::ButtonClick(int button_index) {
}
}