mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
26 lines
647 B
C++
26 lines
647 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#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;
|
||
|
|
||
|
}
|