Skip to content

Commit ac42ae7

Browse files
committed
Core - PermissionRequestType is out of sync compared to cef_permission_request_types_t
- Update to match upstream changes Resolves #4935
1 parent 2bf6c93 commit ac42ae7

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

CefSharp/Enums/PermissionRequestType.cs

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,25 @@ public enum PermissionRequestType : uint
1919
ArSession = 1 << 1,
2020
CameraPanTiltZoom = 1 << 2,
2121
CameraStream = 1 << 3,
22-
Clipboard = 1 << 4,
23-
DiskQuota = 1 << 5,
24-
LocalFonts = 1 << 6,
25-
Geolocation = 1 << 7,
26-
IdleDetection = 1 << 8,
27-
MicStream = 1 << 9,
28-
MidiSysex = 1 << 10,
29-
MultipleDownloads = 1 << 11,
30-
Notifications = 1 << 12,
31-
ProtectedMediaIdentifier = 1 << 13,
32-
RegisterProtocolHandler = 1 << 14,
33-
SecurityAttestation = 1 << 15,
34-
StorageAccess = 1 << 16,
35-
U2FApiRequest = 1 << 17,
36-
VrSession = 1 << 18,
37-
WindowPlacement = 1 << 19
22+
CapturedSurfaceControl = 1 << 4,
23+
Clipboard = 1 << 5,
24+
TopLevelStorageAccess = 1 << 6,
25+
DiskQuota = 1 << 7,
26+
LocalFonts = 1 << 8,
27+
Geolocation = 1 << 9,
28+
Identity_Provider = 1 << 10,
29+
IdleDetection = 1 << 11,
30+
MicStream = 1 << 12,
31+
MidiSysex = 1 << 13,
32+
MultipleDownloads = 1 << 14,
33+
Notifications = 1 << 15,
34+
KeyboardLock = 1 << 16,
35+
PointerLock = 1 << 17,
36+
ProtectedMediaIdentifier = 1 << 18,
37+
RegisterProtocolHandler = 1 << 19,
38+
StorageAccess = 1 << 20,
39+
VrSession = 1 << 21,
40+
WindowManagement = 1 << 22,
41+
FileSystemAccess = 1 << 23
3842
}
3943
}

0 commit comments

Comments
 (0)