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 1fb6808ba80034500a02467364acd6fcda25cf2e..c09265a4c6a6e3f966c733428a7ec3415d7b9605 100644 |
| --- a/content/browser/notifications/notification_database_data.proto |
| +++ b/content/browser/notifications/notification_database_data.proto |
| @@ -21,7 +21,7 @@ message NotificationDatabaseDataProto { |
| // Actual data payload of the notification. This message is the protocol |
| // buffer meant to serialize the content::PlatformNotificationData structure. |
| // |
| - // Next tag: 8 |
| + // Next tag: 10 |
| message NotificationData { |
| enum Direction { |
| LEFT_TO_RIGHT = 0; |
| @@ -36,6 +36,7 @@ message NotificationDatabaseDataProto { |
| optional string icon = 6; |
| optional bool silent = 7; |
| optional bytes data = 8; |
| + repeated int32 vibrate = 9 [packed=true]; |
|
Peter Beverloo
2015/04/26 23:26:41
Please keep the ordering synchronized with Platfor
Sanghyun Park
2015/04/27 14:00:00
Done.
|
| } |
| optional NotificationData notification_data = 4; |