Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1092)

Unified Diff: content/browser/notifications/notification_database_data.proto

Issue 1054573002: Implement support for notification.vibrate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..5d8fe20c6eb264aa3c55ee10b50781bc8d1a996a 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];
Avi (use Gerrit) 2015/05/05 20:53:59 Why not arrange these in order?
Sanghyun Park 2015/05/06 14:53:26 This order is in accordance with the notification
optional bool silent = 7;
optional bytes data = 8;
}

Powered by Google App Engine
This is Rietveld 408576698