feat: add mediaTypes to media permission requests

This is done to be consistent with setPermissionCheckHandler and to be
backwards compatible

Fixes #14168
This commit is contained in:
Samuel Attard 2018-09-13 11:57:23 +10:00
parent d663b4eaee
commit 7025cbd0c9
2 changed files with 19 additions and 1 deletions

View file

@ -295,6 +295,8 @@ win.webContents.session.setCertificateVerifyProc((request, callback) => {
* `permissionGranted` Boolean - Allow or deny the permission.
* `details` Object - Some properties are only available on certain permission types.
* `externalURL` String - The url of the `openExternal` request.
* `mediaTypes` String[] - The types of media access being requested, elements can be `video`
or `audio`
Sets the handler which can be used to respond to permission requests for the `session`.
Calling `callback(true)` will allow the permission and `callback(false)` will reject it.