2024-11-01 13:03:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/MediaSourceExtensions/MediaSource.h>
|
|
|
|
|
|
|
|
namespace Web::MediaSourceExtensions {
|
|
|
|
|
|
|
|
// https://w3c.github.io/media-source/#managedmediasource-interface
|
|
|
|
class ManagedMediaSource : public MediaSource {
|
|
|
|
WEB_PLATFORM_OBJECT(ManagedMediaSource, MediaSource);
|
2024-11-14 15:01:23 +00:00
|
|
|
GC_DECLARE_ALLOCATOR(ManagedMediaSource);
|
2024-11-01 13:03:15 +00:00
|
|
|
|
|
|
|
public:
|
2024-11-14 15:01:23 +00:00
|
|
|
[[nodiscard]] static WebIDL::ExceptionOr<GC::Ref<ManagedMediaSource>> construct_impl(JS::Realm&);
|
2024-11-01 13:03:15 +00:00
|
|
|
|
2024-11-17 23:13:48 +00:00
|
|
|
void set_onstartstreaming(GC::Ptr<WebIDL::CallbackType>);
|
|
|
|
GC::Ptr<WebIDL::CallbackType> onstartstreaming();
|
|
|
|
|
|
|
|
void set_onendstreaming(GC::Ptr<WebIDL::CallbackType>);
|
|
|
|
GC::Ptr<WebIDL::CallbackType> onendstreaming();
|
|
|
|
|
2024-11-01 13:03:15 +00:00
|
|
|
private:
|
|
|
|
ManagedMediaSource(JS::Realm&);
|
|
|
|
|
|
|
|
virtual ~ManagedMediaSource() override;
|
|
|
|
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|