mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb: Remove unecessary dependence on Window from Geometry classes
These classes only needed Window to get at its realm. Pass a realm directly to construct Geometry classes.
This commit is contained in:
parent
f0c5f77f99
commit
62a8c26b73
Notes:
sideshowbarker
2024-07-17 11:06:06 +09:00
Author: https://github.com/ADKaster
Commit: 62a8c26b73
Pull-request: https://github.com/SerenityOS/serenity/pull/15349
Reviewed-by: https://github.com/linusg ✅
11 changed files with 51 additions and 44 deletions
|
@ -17,7 +17,7 @@ class DOMRectList final : public Bindings::LegacyPlatformObject {
|
|||
WEB_PLATFORM_OBJECT(DOMRectList, Bindings::LegacyPlatformObject);
|
||||
|
||||
public:
|
||||
static JS::NonnullGCPtr<DOMRectList> create(HTML::Window&, Vector<JS::Handle<DOMRect>>);
|
||||
static JS::NonnullGCPtr<DOMRectList> create(JS::Realm&, Vector<JS::Handle<DOMRect>>);
|
||||
|
||||
virtual ~DOMRectList() override;
|
||||
|
||||
|
@ -28,7 +28,7 @@ public:
|
|||
virtual JS::Value item_value(size_t index) const override;
|
||||
|
||||
private:
|
||||
DOMRectList(HTML::Window&, Vector<JS::NonnullGCPtr<DOMRect>>);
|
||||
DOMRectList(JS::Realm&, Vector<JS::NonnullGCPtr<DOMRect>>);
|
||||
|
||||
Vector<JS::NonnullGCPtr<DOMRect>> m_rects;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue