LibWeb: Make CSS::Screen GC-allocated

This commit is contained in:
Andreas Kling 2022-08-31 18:52:54 +02:00
commit 8c90e08e0b
Notes: sideshowbarker 2024-07-17 07:28:03 +09:00
6 changed files with 36 additions and 21 deletions

View file

@ -11,9 +11,22 @@
namespace Web::CSS {
Screen::Screen(HTML::Window& window)
: m_window(JS::make_handle(window))
JS::NonnullGCPtr<Screen> Screen::create(HTML::Window& window)
{
return *window.heap().allocate<Screen>(window.realm(), window);
}
Screen::Screen(HTML::Window& window)
: PlatformObject(window.realm())
, m_window(window)
{
set_prototype(&window.cached_web_prototype("Screen"));
}
void Screen::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_window.ptr());
}
Gfx::IntRect Screen::screen_rect() const