Chromium Code Reviews| Index: ui/message_center/notification_list.h |
| diff --git a/ui/message_center/notification_list.h b/ui/message_center/notification_list.h |
| index 4a66660fd0b8259e568ef25976ad28ddc082b69e..42250cfb5a1accae636a331391461d6f9ad67f95 100644 |
| --- a/ui/message_center/notification_list.h |
| +++ b/ui/message_center/notification_list.h |
| @@ -23,6 +23,14 @@ namespace message_center { |
| // A helper class to manage the list of notifications. |
| class MESSAGE_CENTER_EXPORT NotificationList { |
| public: |
| + struct MESSAGE_CENTER_EXPORT NotificationItem { |
| + string16 title; |
| + string16 message; |
| + NotificationItem(string16 title, string16 message) |
| + : title(title), |
| + message(message) {} |
| + }; |
| + |
| struct MESSAGE_CENTER_EXPORT Notification { |
| Notification(); |
| virtual ~Notification(); |
| @@ -46,6 +54,7 @@ class MESSAGE_CENTER_EXPORT NotificationList { |
| string16 button_two_intent; |
| string16 expanded_message; |
| string16 image_url; |
| + std::vector<NotificationItem>* items; |
|
miket_OOO
2012/11/20 23:54:52
Sorry, I must have missed this earlier. I'm not se
|
| // End unpacked values |
| gfx::ImageSkia image; |