mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
Instead of passing RequestServer and ImageDecoder socket FDs as command-line arguments to WebWorker, send them over the main IPC channel after launch. The worker-agent handoff now carries all three transport handles (worker, RequestServer, ImageDecoder) so the connection path matches WebContent.
26 lines
918 B
Plaintext
26 lines
918 B
Plaintext
#include <LibURL/URL.h>
|
|
#include <LibIPC/File.h>
|
|
#include <LibIPC/TransportHandle.h>
|
|
#include <LibWeb/Bindings/AgentType.h>
|
|
#include <LibWeb/Bindings/WorkerPrototype.h>
|
|
#include <LibWeb/HTML/StructuredSerialize.h>
|
|
#include <LibWeb/HTML/Scripting/SerializedEnvironmentSettingsObject.h>
|
|
|
|
endpoint WebWorkerServer {
|
|
|
|
connect_to_request_server(IPC::TransportHandle handle) =|
|
|
connect_to_image_decoder(IPC::TransportHandle handle) =|
|
|
|
|
start_worker(URL::URL url,
|
|
Web::Bindings::WorkerType type,
|
|
Web::Bindings::RequestCredentials credentials,
|
|
String name,
|
|
Web::HTML::TransferDataEncoder message_port,
|
|
Web::HTML::SerializedEnvironmentSettingsObject outside_settings,
|
|
Web::Bindings::AgentType agent_type) =|
|
|
|
|
close_worker() =|
|
|
|
|
handle_file_return(i32 error, Optional<IPC::File> file, i32 request_id) =|
|
|
}
|