1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:27:34 +00:00

LibWeb: Convert the Navigator object to ThrowCompletionOr

This commit is contained in:
Timothy Flynn 2021-10-31 08:35:06 -04:00 committed by Linus Groh
parent 0f93c9d6c8
commit 19ac19eae1
2 changed files with 6 additions and 6 deletions

View file

@ -21,8 +21,8 @@ public:
virtual ~NavigatorObject() override;
private:
JS_DECLARE_OLD_NATIVE_FUNCTION(user_agent_getter);
JS_DECLARE_OLD_NATIVE_FUNCTION(cookie_enabled_getter);
JS_DECLARE_NATIVE_FUNCTION(user_agent_getter);
JS_DECLARE_NATIVE_FUNCTION(cookie_enabled_getter);
};
}