mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Implement MediaCapabilities.decodingInfo()
This commit is contained in:
parent
3b577e6135
commit
0206697d36
Notes:
github-actions[bot]
2025-02-18 17:19:43 +00:00
Author: https://github.com/Psychpsyo
Commit: 0206697d36
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3548
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/Lubrsi
Reviewed-by: https://github.com/shannonbooth
10 changed files with 1047 additions and 1 deletions
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* Copyright (c) 2025, Psychpsyo <psychpsyo@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Web::Bindings {
|
||||
|
||||
// https://w3c.github.io/encrypted-media/#dom-mediakeysrequirement
|
||||
enum class MediaKeysRequirement {
|
||||
Required,
|
||||
Optional,
|
||||
NotAllowed
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue