1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

LibWeb: Make DOM::Event and all its subclasses GC-allocated

This commit is contained in:
Andreas Kling 2022-08-08 22:29:40 +02:00
parent a4ddb0ef87
commit 7c3db526b0
76 changed files with 892 additions and 565 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -17,35 +18,33 @@ struct PromiseRejectionEventInit : public DOM::EventInit {
JS::Value reason;
};
class PromiseRejectionEvent : public DOM::Event {
class PromiseRejectionEvent final : public DOM::Event {
JS_OBJECT(PromiseRejectionEvent, DOM::Event);
public:
using WrapperType = Bindings::PromiseRejectionEventWrapper;
static PromiseRejectionEvent* create(Bindings::WindowObject&, FlyString const& event_name, PromiseRejectionEventInit const& event_init = {});
static PromiseRejectionEvent* create_with_global_object(Bindings::WindowObject&, FlyString const& event_name, PromiseRejectionEventInit const& event_init);
static NonnullRefPtr<PromiseRejectionEvent> create(FlyString const& event_name, PromiseRejectionEventInit const& event_init = {})
{
return adopt_ref(*new PromiseRejectionEvent(event_name, event_init));
}
static NonnullRefPtr<PromiseRejectionEvent> create_with_global_object(Bindings::WindowObject&, FlyString const& event_name, PromiseRejectionEventInit const& event_init)
{
return PromiseRejectionEvent::create(event_name, event_init);
}
PromiseRejectionEvent(Bindings::WindowObject&, FlyString const& event_name, PromiseRejectionEventInit const& event_init);
virtual ~PromiseRejectionEvent() override = default;
virtual ~PromiseRejectionEvent() override;
PromiseRejectionEvent& impl() { return *this; }
// Needs to return a pointer for the generated JS bindings to work.
JS::Promise const* promise() const { return m_promise.cell(); }
JS::Value reason() const { return m_reason.value(); }
JS::Promise const* promise() const { return m_promise; }
JS::Value reason() const { return m_reason; }
protected:
PromiseRejectionEvent(FlyString const& event_name, PromiseRejectionEventInit const& event_init)
: DOM::Event(event_name, event_init)
, m_promise(event_init.promise)
, m_reason(JS::make_handle(event_init.reason))
{
}
private:
virtual void visit_edges(Cell::Visitor&) override;
JS::Handle<JS::Promise> m_promise;
JS::Handle<JS::Value> m_reason;
JS::Promise* m_promise { nullptr };
JS::Value m_reason;
};
}
namespace Web::Bindings {
inline JS::Object* wrap(JS::Realm&, Web::HTML::PromiseRejectionEvent& object) { return &object; }
using PromiseRejectionEventWrapper = Web::HTML::PromiseRejectionEvent;
}