mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00

Allows formulas to update on Google Sheets, which uses a Worker to update them and makes cookie authenticated requests, which was failing before this commit. This has the limitation that it has to proxy through the WebContent process, but that's how the current infrastructure is, which is outside the scope of this commit.
7 lines
198 B
Text
7 lines
198 B
Text
#include <LibURL/URL.h>
|
|
#include <LibWeb/Cookie/Cookie.h>
|
|
|
|
endpoint WebWorkerClient {
|
|
did_close_worker() =|
|
|
did_request_cookie(URL::URL url, Web::Cookie::Source source) => (String cookie)
|
|
}
|