mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
34 lines
926 B
C++
34 lines
926 B
C++
/*
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/RefCounted.h>
|
|
#include <LibURL/URL.h>
|
|
#include <LibWeb/Bindings/MainThreadVM.h>
|
|
#include <LibWeb/Bindings/WorkerPrototype.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/HTML/Scripting/SerializedEnvironmentSettingsObject.h>
|
|
#include <LibWeb/HTML/StructuredSerialize.h>
|
|
|
|
namespace WebWorker {
|
|
|
|
class DedicatedWorkerHost : public RefCounted<DedicatedWorkerHost> {
|
|
public:
|
|
explicit DedicatedWorkerHost(URL::URL url, Web::Bindings::WorkerType type, String name);
|
|
~DedicatedWorkerHost();
|
|
|
|
void run(GC::Ref<Web::Page>, Web::HTML::TransferDataHolder message_port_data, Web::HTML::SerializedEnvironmentSettingsObject const&);
|
|
|
|
private:
|
|
GC::Root<Web::HTML::WorkerDebugConsoleClient> m_console;
|
|
|
|
URL::URL m_url;
|
|
Web::Bindings::WorkerType m_type;
|
|
String m_name;
|
|
};
|
|
|
|
}
|