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

Unified Diff: third_party/WebKit/Source/modules/webusb/USBDevice.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/USBDevice.idl
diff --git a/third_party/WebKit/Source/modules/webusb/USBDevice.idl b/third_party/WebKit/Source/modules/webusb/USBDevice.idl
index a233bc055e62891130115a456384e2b790110dbe..70db97c2476682b54a8992a6acc20de132f9cdaf 100644
--- a/third_party/WebKit/Source/modules/webusb/USBDevice.idl
+++ b/third_party/WebKit/Source/modules/webusb/USBDevice.idl
@@ -30,7 +30,7 @@ enum USBTransferStatus {
readonly attribute DOMString? productName;
readonly attribute DOMString? serialNumber;
readonly attribute USBConfiguration? configuration;
- readonly attribute sequence<USBConfiguration> configurations;
+ readonly attribute FrozenArray<USBConfiguration> configurations;
readonly attribute boolean opened;
[CallWith=ScriptState, MeasureAs=UsbDeviceOpen] Promise<void> open();

Powered by Google App Engine
This is Rietveld 408576698