mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-28 04:00:33 +00:00
This lays the groundwork to allow shared workers, nested workers (i.e. workers owned by workers) and service workers to function independently of WebContent.
18 lines
255 B
C++
18 lines
255 B
C++
/*
|
|
* Copyright (c) 2026, Ladybird contributors
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
using WorkerAgentId = u64;
|
|
using WorkerAgentOwnerToken = u64;
|
|
|
|
struct WorkerAgentStartRequest;
|
|
|
|
}
|