@@ -445,28 +445,35 @@ typedef enum {
445
445
/// ALLOW: Protections disabled.
446
446
CEF_CONTENT_SETTING_TYPE_TRACKING_PROTECTION ,
447
447
448
- // With this permission, when the application calls `getDisplayMedia()`, a
449
- // system audio track can be returned without showing the display media
450
- // selection picker. The application can explicitly specify
451
- // `systemAudio: 'exclude'` or `video: true` to still show the display media
452
- // selection picker if needed. Please note that the setting only works for
453
- // WebUI.
448
+ /// With this permission, when the application calls `getDisplayMedia()`, a
449
+ /// system audio track can be returned without showing the display media
450
+ /// selection picker. The application can explicitly specify
451
+ /// `systemAudio: 'exclude'` or `video: true` to still show the display media
452
+ /// selection picker if needed. Please note that the setting only works for
453
+ /// WebUI.
454
454
CEF_CONTENT_SETTING_TYPE_DISPLAY_MEDIA_SYSTEM_AUDIO ,
455
455
456
- // Whether to use the higher-tier v8 optimizers for running JavaScript on the
457
- // page.
456
+ /// Whether to use the higher-tier v8 optimizers for running JavaScript on the
457
+ /// page.
458
458
CEF_CONTENT_SETTING_TYPE_JAVASCRIPT_OPTIMIZER ,
459
459
460
- // Content Setting for the Storage Access Headers persistent origin trial that
461
- // allows origins to opt into the storage access header behavior. Should be
462
- // scoped to `REQUESTING_ORIGIN_AND_TOP_SCHEMEFUL_SITE_SCOPE` in order to
463
- // correspond to the design of persistent origin trials. See also:
464
- // https://github.com/cfredric/storage-access-headers
465
- // ALLOW: storage access request headers will be attached to cross-site
466
- // requests, and url requests will look for response headers from
467
- // origins to retry a request or load with storage access.
468
- // BLOCK (default): no effect.
460
+ /// Content Setting for the Storage Access Headers persistent origin trial
461
+ /// that allows origins to opt into the storage access header behavior. Should
462
+ /// be scoped to `REQUESTING_ORIGIN_AND_TOP_SCHEMEFUL_SITE_SCOPE` in order to
463
+ /// correspond to the design of persistent origin trials. See also:
464
+ /// https://github.com/cfredric/storage-access-headers
465
+ /// ALLOW: storage access request headers will be attached to cross-site
466
+ /// requests, and url requests will look for response headers from
467
+ /// origins to retry a request or load with storage access.
468
+ /// BLOCK (default): no effect.
469
469
CEF_CONTENT_SETTING_TYPE_STORAGE_ACCESS_HEADER_ORIGIN_TRIAL ,
470
+
471
+ /// Whether or not sites can request Hand Tracking data within WebXR Sessions.
472
+ CEF_CONTENT_SETTING_TYPE_HAND_TRACKING ,
473
+
474
+ /// Website setting to indicate whether user has opted in to allow web apps to
475
+ /// install other web apps.
476
+ CEF_CONTENT_SETTING_TYPE_WEB_APP_INSTALLATION ,
470
477
} cef_content_setting_types_t ;
471
478
472
479
///
0 commit comments