mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-06 16:20:58 +00:00
28 lines
627 B
C
28 lines
627 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
||
|
|
|
||
|
|
namespace Web::MediaCapabilitiesAPI {
|
||
|
|
|
||
|
|
class MediaCapabilities final : public Bindings::PlatformObject {
|
||
|
|
WEB_PLATFORM_OBJECT(MediaCapabilities, Bindings::PlatformObject);
|
||
|
|
JS_DECLARE_ALLOCATOR(MediaCapabilities);
|
||
|
|
|
||
|
|
public:
|
||
|
|
static JS::NonnullGCPtr<MediaCapabilities> create(JS::Realm&);
|
||
|
|
virtual ~MediaCapabilities() override = default;
|
||
|
|
|
||
|
|
private:
|
||
|
|
MediaCapabilities(JS::Realm&);
|
||
|
|
|
||
|
|
virtual void initialize(JS::Realm&) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|