mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:47:35 +00:00
Ladybird: Turn initialize_global_object() into a regular initialize()
See: cfa5885
This commit is contained in:
parent
1e7d4bc089
commit
9789d8b769
3 changed files with 4 additions and 5 deletions
|
@ -24,6 +24,7 @@ class ConsoleGlobalObject final : public JS::GlobalObject {
|
|||
|
||||
public:
|
||||
ConsoleGlobalObject(JS::Realm&, Web::Bindings::WindowObject&);
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
virtual ~ConsoleGlobalObject() override = default;
|
||||
|
||||
virtual JS::ThrowCompletionOr<Object*> internal_get_prototype_of() const override;
|
||||
|
@ -38,8 +39,6 @@ public:
|
|||
virtual JS::ThrowCompletionOr<bool> internal_delete(JS::PropertyKey const& name) override;
|
||||
virtual JS::ThrowCompletionOr<JS::MarkedVector<JS::Value>> internal_own_property_keys() const override;
|
||||
|
||||
virtual void initialize_global_object(JS::Realm&) override;
|
||||
|
||||
private:
|
||||
virtual void visit_edges(Visitor&) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue