Index: modules/notifications/NotificationOptions.idl |
diff --git a/modules/notifications/NotificationOptions.idl b/modules/notifications/NotificationOptions.idl |
index 823032260dbf41e44fe4336f6f80ccfa73a38318..364907ecd5f001f352a63e93bf13fc05eba8aa99 100644 |
--- a/modules/notifications/NotificationOptions.idl |
+++ b/modules/notifications/NotificationOptions.idl |
@@ -10,12 +10,14 @@ enum NotificationDirection { |
"rtl" |
}; |
-[ |
- GarbageCollected |
-] dictionary NotificationOptions { |
+dictionary NotificationOptions { |
NotificationDirection dir = "auto"; |
DOMString lang = ""; |
DOMString body = ""; |
DOMString tag = ""; |
DOMString icon; |
+ // TODO(sh919.park): vibrate should be ([Clamp] unsigned long or sequence<unsigned long>) |
+ (unsigned long or sequence<unsigned long>) vibrate; |
+ boolean silent = false; |
+ any data = null; |
}; |