mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
4db1712f90
These objects had confusing ownership semantics. Let's just throw them all on the GC heap and stop worrying about it.
32 lines
822 B
C++
32 lines
822 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/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, String type);
|
|
~DedicatedWorkerHost();
|
|
|
|
void run(JS::NonnullGCPtr<Web::Page>, Web::HTML::TransferDataHolder message_port_data, Web::HTML::SerializedEnvironmentSettingsObject const&);
|
|
|
|
private:
|
|
JS::Handle<Web::HTML::WorkerDebugConsoleClient> m_console;
|
|
|
|
URL::URL m_url;
|
|
String m_type;
|
|
};
|
|
|
|
}
|