
This commit introduces a WEB_SET_PROTOTYPE_FOR_INTERFACE macro that caches the interface name in a local static FlyString. This means that we only pay for FlyString-from-literal lookup once per browser lifetime instead of every time the interface is instantiated.
34 lines
821 B
C++
34 lines
821 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/HTML/WorkerGlobalScope.h>
|
|
#include <LibWeb/HTML/WorkerNavigator.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
JS_DEFINE_ALLOCATOR(WorkerNavigator);
|
|
|
|
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())
|
|
{
|
|
}
|
|
|
|
WorkerNavigator::~WorkerNavigator() = default;
|
|
|
|
void WorkerNavigator::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(WorkerNavigator);
|
|
}
|
|
|
|
}
|