| Index: content/browser/notifications/notification_database_data.proto
|
| diff --git a/content/browser/notifications/notification_database_data.proto b/content/browser/notifications/notification_database_data.proto
|
| index 7044ed2f5c17d1e5581ab739976fcb227b11d3ca..aad02a8cf2a5e6df6dfab81aa328c24e4e4afc26 100644
|
| --- a/content/browser/notifications/notification_database_data.proto
|
| +++ b/content/browser/notifications/notification_database_data.proto
|
| @@ -20,11 +20,19 @@ message NotificationDatabaseDataProto {
|
|
|
| // A notification action, corresponds to content::PlatformNotificationAction.
|
| //
|
| - // Next tag: 4
|
| + // Next tag: 6
|
| message NotificationAction {
|
| + // Corresponds to PlatformNotificationActionType.
|
| + enum Type {
|
| + BUTTON = 0;
|
| + TEXT = 1;
|
| + }
|
| +
|
| optional string action = 1;
|
| optional string title = 2;
|
| optional string icon = 3;
|
| + optional Type type = 4;
|
| + optional string placeholder = 5;
|
| }
|
|
|
| // Actual data payload of the notification. This message is the protocol
|
|
|