mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Add stub definition for WorkletGlobalScope
This commit is contained in:
parent
286c177896
commit
b39f4f0b5a
Notes:
github-actions[bot]
2024-11-30 10:20:24 +00:00
Author: https://github.com/shannonbooth
Commit: b39f4f0b5a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2653
5 changed files with 50 additions and 0 deletions
20
Libraries/LibWeb/HTML/WorkletGlobalScope.cpp
Normal file
20
Libraries/LibWeb/HTML/WorkletGlobalScope.cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/HTML/WorkletGlobalScope.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
GC_DEFINE_ALLOCATOR(WorkletGlobalScope);
|
||||
|
||||
WorkletGlobalScope::WorkletGlobalScope(JS::Realm& realm)
|
||||
: PlatformObject(realm)
|
||||
{
|
||||
}
|
||||
|
||||
WorkletGlobalScope::~WorkletGlobalScope() = default;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue