LibWeb: Split JS wrapper constructors into construct/initialize

This commit is contained in:
Andreas Kling 2020-06-20 17:28:13 +02:00
commit 03da70c7d0
Notes: sideshowbarker 2024-07-19 05:31:37 +09:00
31 changed files with 107 additions and 55 deletions

View file

@ -33,7 +33,7 @@ namespace Bindings {
class XMLHttpRequestWrapper final : public EventTargetWrapper {
public:
explicit XMLHttpRequestWrapper(XMLHttpRequest&);
XMLHttpRequestWrapper(JS::GlobalObject&, XMLHttpRequest&);
virtual ~XMLHttpRequestWrapper() override;
XMLHttpRequest& impl();