| Index: components/arc/common/notifications.mojom
|
| diff --git a/components/arc/common/notifications.mojom b/components/arc/common/notifications.mojom
|
| index 6ee8f238d35bef26406d395adb45c4c59e383427..4d3eacfe68509d96efaf06e87df784c4d00b2fed 100644
|
| --- a/components/arc/common/notifications.mojom
|
| +++ b/components/arc/common/notifications.mojom
|
| @@ -27,6 +27,11 @@ enum ArcNotificationType {
|
| MAX = PROGRESS
|
| };
|
|
|
| +struct ArcNotificationButton {
|
| + // Title
|
| + string label;
|
| +};
|
| +
|
| struct ArcNotificationData {
|
| // Identifier of notification
|
| string key;
|
| @@ -48,6 +53,8 @@ struct ArcNotificationData {
|
| int32 progress_current;
|
| // The maximum value of progress.
|
| int32 progress_max;
|
| + // Action buttons
|
| + array<ArcNotificationButton> buttons;
|
| };
|
|
|
| interface NotificationsHost {
|
|
|