1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

LibWeb: Add fetch_controller property in HTML::NavigationParams

This commit is contained in:
Aliaksandr Kalenik 2023-05-02 07:09:05 +03:00 committed by Andreas Kling
parent 38a2d5ead3
commit a27a30898c

View file

@ -62,6 +62,9 @@ struct NavigationParams {
// FIXME: an algorithm expecting a response
void* process_response_end_of_body { nullptr };
// null or a fetch controller
JS::GCPtr<Fetch::Infrastructure::FetchController> fetch_controller { nullptr };
// FIXME: null or an algorithm accepting a Document, once it has been created
void* commit_early_hints { nullptr };
};