2024-11-01 14:03:15 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
|
|
|
|
namespace Web::MediaSourceExtensions {
|
|
|
|
|
|
|
|
// https://w3c.github.io/media-source/#dom-mediasourcehandle
|
|
|
|
class MediaSourceHandle : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(MediaSourceHandle, Bindings::PlatformObject);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(MediaSourceHandle);
|
2024-11-01 14:03:15 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
private:
|
|
|
|
MediaSourceHandle(JS::Realm&);
|
|
|
|
|
|
|
|
virtual ~MediaSourceHandle() override;
|
|
|
|
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|