mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 05:14:59 +00:00

This allows the initial fetch() in the run a worker AO to use the proper values from the outside settings.
32 lines
804 B
C++
32 lines
804 B
C++
/*
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/RefCounted.h>
|
|
#include <AK/URL.h>
|
|
#include <LibWeb/Bindings/MainThreadVM.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, String type);
|
|
~DedicatedWorkerHost();
|
|
|
|
void run(JS::NonnullGCPtr<Web::Page>, Web::HTML::TransferDataHolder message_port_data, Web::HTML::SerializedEnvironmentSettingsObject const&);
|
|
|
|
private:
|
|
RefPtr<Web::HTML::WorkerDebugConsoleClient> m_console;
|
|
|
|
URL m_url;
|
|
String m_type;
|
|
};
|
|
|
|
}
|