summaryrefslogtreecommitdiff
path: root/Ladybird/ConsoleGlobalObject.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-08-05 11:23:46 +0200
committerAndrew Kaster <andrewdkaster@gmail.com>2022-12-25 07:58:58 -0700
commit90c0ae5e63be8535ad9cbfd3c5e2f0458e8916db (patch)
tree2160514fd83056f062e5535b2ad1c05560fb24e4 /Ladybird/ConsoleGlobalObject.h
parentb1cc1bd47b27559b78d920015c484dc4d3250f36 (diff)
downloadserenity-90c0ae5e63be8535ad9cbfd3c5e2f0458e8916db.zip
Ladybird: Update for LibJS global object construction changes
Diffstat (limited to 'Ladybird/ConsoleGlobalObject.h')
-rw-r--r--Ladybird/ConsoleGlobalObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ladybird/ConsoleGlobalObject.h b/Ladybird/ConsoleGlobalObject.h
index b289b4164f..2e50f951cf 100644
--- a/Ladybird/ConsoleGlobalObject.h
+++ b/Ladybird/ConsoleGlobalObject.h
@@ -23,7 +23,7 @@ class ConsoleGlobalObject final : public JS::GlobalObject {
JS_OBJECT(ConsoleGlobalObject, JS::GlobalObject);
public:
- ConsoleGlobalObject(Web::Bindings::WindowObject&);
+ ConsoleGlobalObject(JS::Realm&, Web::Bindings::WindowObject&);
virtual ~ConsoleGlobalObject() override = default;
virtual JS::ThrowCompletionOr<Object*> internal_get_prototype_of() const override;