
These classes only needed Window to get at its realm. Pass a realm directly to construct HTML classes.
26 lines
676 B
C++
26 lines
676 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
#include <LibWeb/HTML/WorkerGlobalScope.h>
|
|
#include <LibWeb/HTML/WorkerNavigator.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
JS::NonnullGCPtr<WorkerNavigator> WorkerNavigator::create(WorkerGlobalScope& global_scope)
|
|
{
|
|
return *global_scope.heap().allocate<WorkerNavigator>(global_scope.realm(), global_scope);
|
|
}
|
|
|
|
WorkerNavigator::WorkerNavigator(WorkerGlobalScope& global_scope)
|
|
: PlatformObject(global_scope.realm())
|
|
{
|
|
// FIXME: Set prototype once we can get to worker scope prototypes.
|
|
}
|
|
|
|
WorkerNavigator::~WorkerNavigator() = default;
|
|
|
|
}
|