Index: third_party/WebKit/Source/modules/notifications/Notification.idl |
diff --git a/third_party/WebKit/Source/modules/notifications/Notification.idl b/third_party/WebKit/Source/modules/notifications/Notification.idl |
index 03c304060debfd56ea7ebb49b9397bda04597612..5340c28f402f464bb1112427b55847b166b4f2bb 100644 |
--- a/third_party/WebKit/Source/modules/notifications/Notification.idl |
+++ b/third_party/WebKit/Source/modules/notifications/Notification.idl |
@@ -68,17 +68,13 @@ enum NotificationPermission { |
readonly attribute USVString icon; |
[RuntimeEnabled=NotificationBadge] readonly attribute USVString badge; |
- [RuntimeEnabled=NotificationExperimental] readonly attribute sequence<unsigned long>? vibrate; |
+ [SameObject, SaveSameObject] readonly attribute FrozenArray<unsigned long> vibrate; |
readonly attribute DOMTimeStamp timestamp; |
readonly attribute boolean renotify; |
readonly attribute boolean silent; |
readonly attribute boolean requireInteraction; |
[CallWith=ScriptState, SameObject] readonly attribute any data; |
- |
- // TODO(johnme): Ship once Blink supports FrozenArray (https://crbug.com/515920) |
- // and we've implemented the additional Object.freeze described in |
- // https://notifications.spec.whatwg.org/#dom-notification-actions |
- [RuntimeEnabled=NotificationExperimental] readonly attribute sequence<NotificationAction> actions; |
+ [CallWith=ScriptState, SameObject, SaveSameObject] readonly attribute FrozenArray<NotificationAction> actions; |
[MeasureAs=NotificationClosed] void close(); |
}; |