2022-02-06 19:12:57 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-09-04 14:37:49 +02:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2022-10-08 20:53:08 -06:00
|
|
|
#include <LibWeb/HTML/NavigatorConcurrentHardware.h>
|
|
|
|
#include <LibWeb/HTML/NavigatorID.h>
|
|
|
|
#include <LibWeb/HTML/NavigatorLanguage.h>
|
|
|
|
#include <LibWeb/HTML/NavigatorOnLine.h>
|
2022-02-06 19:12:57 -07:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2022-10-08 20:53:08 -06:00
|
|
|
class WorkerNavigator : public Bindings::PlatformObject
|
|
|
|
, public NavigatorConcurrentHardwareMixin
|
|
|
|
, public NavigatorIDMixin
|
|
|
|
, public NavigatorLanguageMixin
|
|
|
|
, public NavigatorOnLineMixin {
|
2022-09-04 14:37:49 +02:00
|
|
|
WEB_PLATFORM_OBJECT(WorkerNavigator, Bindings::PlatformObject);
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DECLARE_ALLOCATOR(WorkerNavigator);
|
2022-09-04 14:37:49 +02:00
|
|
|
|
2022-02-06 19:12:57 -07:00
|
|
|
public:
|
2023-08-13 13:05:26 +02:00
|
|
|
[[nodiscard]] static JS::NonnullGCPtr<WorkerNavigator> create(WorkerGlobalScope&);
|
2022-09-04 14:37:49 +02:00
|
|
|
|
|
|
|
virtual ~WorkerNavigator() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit WorkerNavigator(WorkerGlobalScope&);
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2022-02-06 19:12:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|