Chromium Code Reviews| Index: ui/message_center/notification_delegate.h |
| diff --git a/ui/message_center/notification_delegate.h b/ui/message_center/notification_delegate.h |
| index 17b4e340d5fa5ff911c9291e8beee6c08c7ab053..ad359c05c4b9276fb1ef39fbbfcdad9e2805d9f9 100644 |
| --- a/ui/message_center/notification_delegate.h |
| +++ b/ui/message_center/notification_delegate.h |
| @@ -11,6 +11,7 @@ |
| #include "base/callback.h" |
| #include "base/macros.h" |
| #include "base/memory/ref_counted.h" |
| +#include "base/strings/string16.h" |
| #include "ui/message_center/message_center_export.h" |
| #if defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX) |
| @@ -43,6 +44,11 @@ class MESSAGE_CENTER_EXPORT NotificationDelegate |
| // To be called when the user clicks a button in a notification. |
| virtual void ButtonClick(int button_index); |
| + // To be called when the user types a reply to a notification. |
| + // TODO(crbug.com/599859) Support this feature in the message center. |
|
Peter Beverloo
2016/10/12 13:58:31
Sorry, one more addendum: it would be good to note
awdf
2016/10/12 17:04:01
Done.
|
| + virtual void ButtonClickWithReply(int button_index, |
| + const base::string16& reply); |
| + |
| // To be called when the user clicks the settings button in a notification. |
| virtual void SettingsClick(); |