mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibWeb: Replace GlobalObject with Realm in wrapper functions
Similar to create() in LibJS, wrap() et al. are on a low enough level to warrant passing a Realm directly instead of relying on the current realm from the VM, as a wrapper may need to be allocated while no JS is being executed.
This commit is contained in:
parent
56b2ae5ac0
commit
40a70461a0
Notes:
sideshowbarker
2024-07-17 07:53:19 +09:00
Author: https://github.com/linusg
Commit: 40a70461a0
Pull-request: https://github.com/SerenityOS/serenity/pull/14973
Reviewed-by: https://github.com/davidot ✅
60 changed files with 261 additions and 235 deletions
|
@ -39,9 +39,9 @@ void Performance::unref_event_target()
|
|||
m_window.unref();
|
||||
}
|
||||
|
||||
JS::Object* Performance::create_wrapper(JS::GlobalObject& global_object)
|
||||
JS::Object* Performance::create_wrapper(JS::Realm& realm)
|
||||
{
|
||||
return Bindings::wrap(global_object, *this);
|
||||
return Bindings::wrap(realm, *this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ public:
|
|||
virtual void ref_event_target() override;
|
||||
virtual void unref_event_target() override;
|
||||
|
||||
virtual JS::Object* create_wrapper(JS::GlobalObject&) override;
|
||||
virtual JS::Object* create_wrapper(JS::Realm&) override;
|
||||
|
||||
private:
|
||||
HTML::Window& m_window;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue