| Index: ui/message_center/notification_delegate.cc
|
| diff --git a/ui/message_center/notification_delegate.cc b/ui/message_center/notification_delegate.cc
|
| index 405c70384fd5ed22ba8702e21b1fe880606df350..70675233293179c66f636f56be93e89e35492d9e 100644
|
| --- a/ui/message_center/notification_delegate.cc
|
| +++ b/ui/message_center/notification_delegate.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "ui/message_center/notification_delegate.h"
|
|
|
| +#include "base/logging.h"
|
| +
|
| namespace message_center {
|
|
|
| // NotificationDelegate:
|
| @@ -18,6 +20,11 @@ void NotificationDelegate::Click() {}
|
|
|
| void NotificationDelegate::ButtonClick(int button_index) {}
|
|
|
| +void NotificationDelegate::ButtonClickWithReply(int button_index,
|
| + const base::string16& reply) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void NotificationDelegate::SettingsClick() {}
|
|
|
| bool NotificationDelegate::ShouldDisplaySettingsButton() {
|
|
|