ladybird/Libraries/LibWeb/Worker/WebWorkerClient.ipc
Timothy Flynn 8d97389038 LibHTTP+Everywhere: Move the cookie implementation to LibHTTP
This will allow parsing cookies outside of LibWeb.

LibHTTP is basically becoming the home of HTTP WG specs.
2026-02-10 12:21:20 +01:00

9 lines
347 B
Text

#include <LibHTTP/Cookie/Cookie.h>
#include <LibURL/URL.h>
#include <LibWeb/Bindings/AgentType.h>
endpoint WebWorkerClient {
did_close_worker() =|
did_request_cookie(URL::URL url, HTTP::Cookie::Source source) => (HTTP::Cookie::VersionedCookie cookie)
request_worker_agent(Web::Bindings::AgentType worker_type) => (IPC::File socket)
}