mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibWeb: Add stubbed Media Source Extensions API
Just the boilerplate :^)
This commit is contained in:
parent
3e3851983d
commit
3504370281
Notes:
github-actions[bot]
2024-11-01 17:24:36 +00:00
Author: https://github.com/gmta
Commit: 3504370281
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2102
30 changed files with 604 additions and 0 deletions
|
@ -90,10 +90,12 @@ static bool is_platform_object(Type const& type)
|
|||
"ServiceWorkerRegistration"sv,
|
||||
"SVGTransform"sv,
|
||||
"ShadowRoot"sv,
|
||||
"SourceBuffer"sv,
|
||||
"Table"sv,
|
||||
"Text"sv,
|
||||
"TextMetrics"sv,
|
||||
"TextTrack"sv,
|
||||
"TimeRanges"sv,
|
||||
"URLSearchParams"sv,
|
||||
"VTTRegion"sv,
|
||||
"VideoTrack"sv,
|
||||
|
@ -4240,6 +4242,7 @@ static void generate_using_namespace_definitions(SourceGenerator& generator)
|
|||
using namespace Web::Internals;
|
||||
using namespace Web::IntersectionObserver;
|
||||
using namespace Web::MediaCapabilitiesAPI;
|
||||
using namespace Web::MediaSourceExtensions;
|
||||
using namespace Web::NavigationTiming;
|
||||
using namespace Web::PerformanceTimeline;
|
||||
using namespace Web::RequestIdleCallback;
|
||||
|
|
|
@ -28,6 +28,7 @@ static constexpr Array libweb_interface_namespaces = {
|
|||
"Internals"sv,
|
||||
"IntersectionObserver"sv,
|
||||
"MathML"sv,
|
||||
"MediaSourceExtensions"sv,
|
||||
"NavigationTiming"sv,
|
||||
"RequestIdleCallback"sv,
|
||||
"ResizeObserver"sv,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue