mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 17:37:33 +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.
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGC/Heap.h>
|
|
#include <LibJS/Runtime/Realm.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/NavigationCurrentEntryChangeEvent.h>
|
|
#include <LibWeb/HTML/NavigationCurrentEntryChangeEvent.h>
|
|
#include <LibWeb/HTML/NavigationHistoryEntry.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
GC_DEFINE_ALLOCATOR(NavigationCurrentEntryChangeEvent);
|
|
|
|
GC::Ref<NavigationCurrentEntryChangeEvent> NavigationCurrentEntryChangeEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::NavigationCurrentEntryChangeEventInit const& event_init)
|
|
{
|
|
return realm.create<NavigationCurrentEntryChangeEvent>(realm, event_name, event_init);
|
|
}
|
|
|
|
NavigationCurrentEntryChangeEvent::NavigationCurrentEntryChangeEvent(JS::Realm& realm, FlyString const& event_name, Bindings::NavigationCurrentEntryChangeEventInit const& event_init)
|
|
: DOM::Event(realm, event_name, event_init)
|
|
, m_navigation_type(event_init.navigation_type)
|
|
, m_from(*event_init.from)
|
|
{
|
|
}
|
|
|
|
NavigationCurrentEntryChangeEvent::~NavigationCurrentEntryChangeEvent() = default;
|
|
|
|
void NavigationCurrentEntryChangeEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(NavigationCurrentEntryChangeEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void NavigationCurrentEntryChangeEvent::visit_edges(JS::Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_from);
|
|
}
|
|
|
|
}
|