mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-12 01:46:46 +02:00
Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
34 lines
1000 B
C++
34 lines
1000 B
C++
/*
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/BufferedChangeEvent.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/MediaSourceExtensions/BufferedChangeEvent.h>
|
|
|
|
namespace Web::MediaSourceExtensions {
|
|
|
|
GC_DEFINE_ALLOCATOR(BufferedChangeEvent);
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<BufferedChangeEvent>> BufferedChangeEvent::construct_impl(JS::Realm& realm, AK::FlyString const& type, Bindings::BufferedChangeEventInit const& event_init)
|
|
{
|
|
return realm.create<BufferedChangeEvent>(realm, type, event_init);
|
|
}
|
|
|
|
BufferedChangeEvent::BufferedChangeEvent(JS::Realm& realm, AK::FlyString const& type, Bindings::BufferedChangeEventInit const& event_init)
|
|
: DOM::Event(realm, type, event_init)
|
|
{
|
|
}
|
|
|
|
BufferedChangeEvent::~BufferedChangeEvent() = default;
|
|
|
|
void BufferedChangeEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(BufferedChangeEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
}
|