LibWeb: Implement NavigatorStorage mixin interface

Co-authored-by: Tim Flynn <trflynn89@serenityos.org>
This commit is contained in:
Jamie Mansfield 2024-08-13 20:56:19 +01:00 committed by Tim Flynn
commit e3b3041a0c
Notes: github-actions[bot] 2024-08-16 15:23:10 +00:00
12 changed files with 93 additions and 3 deletions

View file

@ -11,6 +11,7 @@
#include <LibWeb/HTML/NavigatorID.h>
#include <LibWeb/HTML/NavigatorLanguage.h>
#include <LibWeb/HTML/NavigatorOnLine.h>
#include <LibWeb/StorageAPI/NavigatorStorage.h>
namespace Web::HTML {
@ -18,7 +19,8 @@ class WorkerNavigator : public Bindings::PlatformObject
, public NavigatorConcurrentHardwareMixin
, public NavigatorIDMixin
, public NavigatorLanguageMixin
, public NavigatorOnLineMixin {
, public NavigatorOnLineMixin
, public StorageAPI::NavigatorStorage {
WEB_PLATFORM_OBJECT(WorkerNavigator, Bindings::PlatformObject);
JS_DECLARE_ALLOCATOR(WorkerNavigator);
@ -31,6 +33,9 @@ private:
explicit WorkerNavigator(WorkerGlobalScope&);
virtual void initialize(JS::Realm&) override;
// ^StorageAPI::NavigatorStorage
virtual Bindings::PlatformObject const& this_navigator_storage_object() const override { return *this; }
};
}