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

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

Issue 1656243002: Implementation of renotify flag for Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review comments and added LayoutTests interface listing files Created 4 years, 11 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 17620782d9d596c20b85a8b751e8d880f52061ce..af6a5b84821f234c7d97e611d507eeff72f4dc76 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;
@@ -45,6 +45,7 @@ message NotificationDatabaseDataProto {
optional string icon = 6;
repeated int32 vibration_pattern = 9 [packed=true];
optional int64 timestamp = 12;
+ optional bool renotify = 13;
optional bool silent = 7;
optional bool require_interaction = 11;
optional bytes data = 8;

Powered by Google App Engine
This is Rietveld 408576698