@@ -40,7 +40,7 @@ dictionary USBConnectionEventInit : EventInit {
40
40
};
41
41
42
42
[
43
- Exposed=(DedicatedWorker,SharedWorker ,Window),
43
+ Exposed=(Worker ,Window),
44
44
SecureContext
45
45
]
46
46
interface USBConnectionEvent : Event {
@@ -55,7 +55,7 @@ enum USBTransferStatus {
55
55
};
56
56
57
57
[
58
- Exposed=(DedicatedWorker,SharedWorker ,Window),
58
+ Exposed=(Worker ,Window),
59
59
SecureContext
60
60
]
61
61
interface USBInTransferResult {
@@ -65,7 +65,7 @@ interface USBInTransferResult {
65
65
};
66
66
67
67
[
68
- Exposed=(DedicatedWorker,SharedWorker ,Window),
68
+ Exposed=(Worker ,Window),
69
69
SecureContext
70
70
]
71
71
interface USBOutTransferResult {
@@ -75,7 +75,7 @@ interface USBOutTransferResult {
75
75
};
76
76
77
77
[
78
- Exposed=(DedicatedWorker,SharedWorker ,Window),
78
+ Exposed=(Worker ,Window),
79
79
SecureContext
80
80
]
81
81
interface USBIsochronousInTransferPacket {
@@ -85,7 +85,7 @@ interface USBIsochronousInTransferPacket {
85
85
};
86
86
87
87
[
88
- Exposed=(DedicatedWorker,SharedWorker ,Window),
88
+ Exposed=(Worker ,Window),
89
89
SecureContext
90
90
]
91
91
interface USBIsochronousInTransferResult {
@@ -95,7 +95,7 @@ interface USBIsochronousInTransferResult {
95
95
};
96
96
97
97
[
98
- Exposed=(DedicatedWorker,SharedWorker ,Window),
98
+ Exposed=(Worker ,Window),
99
99
SecureContext
100
100
]
101
101
interface USBIsochronousOutTransferPacket {
@@ -105,15 +105,15 @@ interface USBIsochronousOutTransferPacket {
105
105
};
106
106
107
107
[
108
- Exposed=(DedicatedWorker,SharedWorker ,Window),
108
+ Exposed=(Worker ,Window),
109
109
SecureContext
110
110
]
111
111
interface USBIsochronousOutTransferResult {
112
112
constructor(sequence<USBIsochronousOutTransferPacket> packets);
113
113
readonly attribute FrozenArray<USBIsochronousOutTransferPacket> packets;
114
114
};
115
115
116
- [Exposed=(DedicatedWorker,SharedWorker ,Window), SecureContext]
116
+ [Exposed=(Worker ,Window), SecureContext]
117
117
interface USBDevice {
118
118
readonly attribute octet usbVersionMajor;
119
119
readonly attribute octet usbVersionMinor;
@@ -171,7 +171,7 @@ dictionary USBControlTransferParameters {
171
171
};
172
172
173
173
[
174
- Exposed=(DedicatedWorker,SharedWorker ,Window),
174
+ Exposed=(Worker ,Window),
175
175
SecureContext
176
176
]
177
177
interface USBConfiguration {
@@ -182,7 +182,7 @@ interface USBConfiguration {
182
182
};
183
183
184
184
[
185
- Exposed=(DedicatedWorker,SharedWorker ,Window),
185
+ Exposed=(Worker ,Window),
186
186
SecureContext
187
187
]
188
188
interface USBInterface {
@@ -194,7 +194,7 @@ interface USBInterface {
194
194
};
195
195
196
196
[
197
- Exposed=(DedicatedWorker,SharedWorker ,Window),
197
+ Exposed=(Worker ,Window),
198
198
SecureContext
199
199
]
200
200
interface USBAlternateInterface {
@@ -219,7 +219,7 @@ enum USBEndpointType {
219
219
};
220
220
221
221
[
222
- Exposed=(DedicatedWorker,SharedWorker ,Window),
222
+ Exposed=(Worker ,Window),
223
223
SecureContext
224
224
]
225
225
interface USBEndpoint {
@@ -252,7 +252,7 @@ dictionary USBPermissionStorage {
252
252
sequence<AllowedUSBDevice> allowedDevices = [];
253
253
};
254
254
255
- [Exposed=(DedicatedWorker,SharedWorker ,Window)]
255
+ [Exposed=(Worker ,Window)]
256
256
interface USBPermissionResult : PermissionStatus {
257
257
attribute FrozenArray<USBDevice> devices;
258
258
};
0 commit comments