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

LibWeb: Make CSS::Screen GC-allocated

This commit is contained in:
Andreas Kling 2022-08-31 18:52:54 +02:00
parent d5e831988e
commit 8c90e08e0b
6 changed files with 36 additions and 21 deletions

View file

@ -6,26 +6,20 @@
#pragma once
#include <AK/RefCountForwarder.h>
#include <LibGfx/Rect.h>
#include <LibWeb/Bindings/Wrappable.h>
#include <LibWeb/Bindings/PlatformObject.h>
#include <LibWeb/Forward.h>
#include <LibWeb/HTML/Window.h>
namespace Web::CSS {
class Screen final
: public RefCounted<Screen>
, public Bindings::Wrappable {
class Screen final : public Bindings::PlatformObject {
WEB_PLATFORM_OBJECT(Screen, Bindings::PlatformObject);
public:
using WrapperType = Bindings::ScreenWrapper;
using AllowOwnPtr = TrueType;
static NonnullOwnPtr<Screen> create(Badge<HTML::Window>, HTML::Window& window)
{
return adopt_own(*new Screen(window));
}
static JS::NonnullGCPtr<Screen> create(HTML::Window&);
i32 width() const { return screen_rect().width(); }
i32 height() const { return screen_rect().height(); }
@ -37,11 +31,15 @@ public:
private:
explicit Screen(HTML::Window&);
virtual void visit_edges(Cell::Visitor&) override;
HTML::Window const& window() const { return *m_window; }
Gfx::IntRect screen_rect() const;
JS::Handle<HTML::Window> m_window;
JS::NonnullGCPtr<HTML::Window> m_window;
};
}
WRAPPER_HACK(Screen, Web::CSS)