mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-20 17:21:52 +00:00
18 lines
298 B
C++
18 lines
298 B
C++
/*
|
|
* 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
|
|
};
|
|
|
|
}
|