rm 'usb' perm

This commit is contained in:
Tony 2024-11-01 17:20:36 -05:00 committed by GitHub
parent 5d4d256ddf
commit 6399bf97fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 3 deletions

View file

@ -983,7 +983,6 @@ A permission or an array of permissions to grant. Permissions can be one of the
* `'notifications'` * `'notifications'`
* `'payment-handler'` * `'payment-handler'`
* `'storage-access'` * `'storage-access'`
* `'usb'`
* `'window-management'` * `'window-management'`
### option: BrowserContext.grantPermissions.origin ### option: BrowserContext.grantPermissions.origin

View file

@ -440,7 +440,6 @@ export class CRBrowserContext extends BrowserContext {
['local-fonts', 'localFonts'], ['local-fonts', 'localFonts'],
['midi-sysex', 'midiSysex'], ['midi-sysex', 'midiSysex'],
['storage-access', 'storageAccess'], ['storage-access', 'storageAccess'],
['usb', 'usb'],
['window-management', 'windowManagement'], ['window-management', 'windowManagement'],
]); ]);
const filtered = permissions.map(permission => { const filtered = permissions.map(permission => {

View file

@ -8981,7 +8981,6 @@ export interface BrowserContext {
* - `'notifications'` * - `'notifications'`
* - `'payment-handler'` * - `'payment-handler'`
* - `'storage-access'` * - `'storage-access'`
* - `'usb'`
* - `'window-management'` * - `'window-management'`
* @param options * @param options
*/ */