mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
This fixes a whole bunch of WPT timeouts for Workers which wait for this event to arrive.
11 lines
387 B
Plaintext
11 lines
387 B
Plaintext
#include <LibHTTP/Cookie/Cookie.h>
|
|
#include <LibURL/URL.h>
|
|
#include <LibWeb/Bindings/AgentType.h>
|
|
|
|
endpoint WebWorkerClient {
|
|
did_close_worker() =|
|
|
did_fail_loading_worker_script() =|
|
|
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)
|
|
}
|