Chromium Code Reviews| 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 17620782d9d596c20b85a8b751e8d880f52061ce..0d69c161cc2f3101729d2bc49c370f318bc3d300 100644 |
| --- a/content/browser/notifications/notification_database_data.proto |
| +++ b/content/browser/notifications/notification_database_data.proto |
| @@ -29,7 +29,7 @@ message NotificationDatabaseDataProto { |
| // Actual data payload of the notification. This message is the protocol |
| // buffer meant to serialize the content::PlatformNotificationData structure. |
| // |
| - // Next tag: 13 |
| + // Next tag: 14 |
| message NotificationData { |
| enum Direction { |
| LEFT_TO_RIGHT = 0; |
| @@ -46,6 +46,7 @@ message NotificationDatabaseDataProto { |
| repeated int32 vibration_pattern = 9 [packed=true]; |
| optional int64 timestamp = 12; |
| optional bool silent = 7; |
| + optional bool renotify = 13; |
|
Peter Beverloo
2016/02/02 23:43:10
nit: here and everywhere else, please keep the ord
harkness
2016/02/03 11:24:28
Done.
|
| optional bool require_interaction = 11; |
| optional bytes data = 8; |
| repeated NotificationAction actions = 10; |