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
commit a27a30898c
Notes: sideshowbarker 2024-07-17 21:11:12 +09:00

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 };
};