ladybird/Userland/Libraries/LibWeb/Worker/WebWorkerClient.cpp

33 lines
684 B
C++

/*
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/System.h>
#include <LibWeb/Worker/WebWorkerClient.h>
namespace Web::HTML {
void WebWorkerClient::die()
{
// FIXME: Notify WorkerAgent that the worker is ded
}
void WebWorkerClient::did_close_worker()
{
if (on_worker_close)
on_worker_close();
}
WebWorkerClient::WebWorkerClient(NonnullOwnPtr<Core::LocalSocket> socket)
: IPC::ConnectionToServer<WebWorkerClientEndpoint, WebWorkerServerEndpoint>(*this, move(socket))
{
}
IPC::File WebWorkerClient::dup_socket()
{
return MUST(IPC::File::clone_fd(socket().fd().value()));
}
}