diff options
Diffstat (limited to 'content/browser/notifications/notification_database_data.proto')
-rw-r--r-- | content/browser/notifications/notification_database_data.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/notifications/notification_database_data.proto b/content/browser/notifications/notification_database_data.proto index 1fb6808..5d8fe20 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; @@ -34,6 +34,7 @@ message NotificationDatabaseDataProto { optional string body = 4; optional string tag = 5; optional string icon = 6; + repeated int32 vibration_pattern = 9 [packed=true]; optional bool silent = 7; optional bytes data = 8; } |