ladybird/Libraries/LibWeb/HTML/WorkerAgentForward.h
Luke Wilde c2dbd52982 LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView
This lays the groundwork to allow shared workers, nested workers (i.e.
workers owned by workers) and service workers to function independently
of WebContent.
2026-05-27 02:27:19 +01:00

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;
}