Skip to content

Commit

Permalink
Core - PermissionRequestType is out of sync compared to cef_permissio…
Browse files Browse the repository at this point in the history
…n_request_types_t

- Update to match upstream changes

Resolves #4935
  • Loading branch information
amaitland committed Oct 4, 2024
1 parent 2bf6c93 commit ac42ae7
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions CefSharp/Enums/PermissionRequestType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,25 @@ public enum PermissionRequestType : uint
ArSession = 1 << 1,
CameraPanTiltZoom = 1 << 2,
CameraStream = 1 << 3,
Clipboard = 1 << 4,
DiskQuota = 1 << 5,
LocalFonts = 1 << 6,
Geolocation = 1 << 7,
IdleDetection = 1 << 8,
MicStream = 1 << 9,
MidiSysex = 1 << 10,
MultipleDownloads = 1 << 11,
Notifications = 1 << 12,
ProtectedMediaIdentifier = 1 << 13,
RegisterProtocolHandler = 1 << 14,
SecurityAttestation = 1 << 15,
StorageAccess = 1 << 16,
U2FApiRequest = 1 << 17,
VrSession = 1 << 18,
WindowPlacement = 1 << 19
CapturedSurfaceControl = 1 << 4,
Clipboard = 1 << 5,
TopLevelStorageAccess = 1 << 6,
DiskQuota = 1 << 7,
LocalFonts = 1 << 8,
Geolocation = 1 << 9,
Identity_Provider = 1 << 10,
IdleDetection = 1 << 11,
MicStream = 1 << 12,
MidiSysex = 1 << 13,
MultipleDownloads = 1 << 14,
Notifications = 1 << 15,
KeyboardLock = 1 << 16,
PointerLock = 1 << 17,
ProtectedMediaIdentifier = 1 << 18,
RegisterProtocolHandler = 1 << 19,
StorageAccess = 1 << 20,
VrSession = 1 << 21,
WindowManagement = 1 << 22,
FileSystemAccess = 1 << 23
}
}

0 comments on commit ac42ae7

Please sign in to comment.