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

Unified Diff: third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl

Issue 2758683004: Match WebUSB specification on use of FrozenArray for attributes. (Closed)
Patch Set: Created 3 years, 9 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: third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl
diff --git a/third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl b/third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl
index 6deb1fee7a77a2d8a5e8a440bdfcfbd88e879ecc..ba42758b1eeaef052623d495df92a8cc0a160f7e 100644
--- a/third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl
+++ b/third_party/WebKit/Source/modules/webusb/USBIsochronousInTransferResult.idl
@@ -10,5 +10,5 @@
optional DataView? data)
] interface USBIsochronousInTransferResult {
readonly attribute DataView? data;
- readonly attribute sequence<USBIsochronousInTransferPacket> packets;
+ readonly attribute FrozenArray<USBIsochronousInTransferPacket> packets;
};

Powered by Google App Engine
This is Rietveld 408576698