mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Add missing links to Fetch::Infrastructure::Request members
This commit is contained in:
parent
32ad939e44
commit
7b50e96434
Notes:
sideshowbarker
2024-07-17 07:43:44 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/7b50e96434 Pull-request: https://github.com/SerenityOS/serenity/pull/15478
1 changed files with 5 additions and 0 deletions
|
@ -390,18 +390,23 @@ private:
|
|||
// A request has an associated cache mode, which is "default", "no-store", "reload", "no-cache", "force-cache", or "only-if-cached". Unless stated otherwise, it is "default".
|
||||
CacheMode m_cache_mode { CacheMode::Default };
|
||||
|
||||
// https://fetch.spec.whatwg.org/#concept-request-redirect-mode
|
||||
// A request has an associated redirect mode, which is "follow", "error", or "manual". Unless stated otherwise, it is "follow".
|
||||
RedirectMode m_redirect_mode { RedirectMode::Follow };
|
||||
|
||||
// https://fetch.spec.whatwg.org/#concept-request-integrity-metadata
|
||||
// A request has associated integrity metadata (a string). Unless stated otherwise, it is the empty string.
|
||||
String m_integrity_metadata { String::empty() };
|
||||
|
||||
// https://fetch.spec.whatwg.org/#concept-request-nonce-metadata
|
||||
// A request has associated cryptographic nonce metadata (a string). Unless stated otherwise, it is the empty string.
|
||||
String m_cryptographic_nonce_metadata { String::empty() };
|
||||
|
||||
// https://fetch.spec.whatwg.org/#concept-request-parser-metadata
|
||||
// A request has associated parser metadata which is the empty string, "parser-inserted", or "not-parser-inserted". Unless otherwise stated, it is the empty string.
|
||||
Optional<ParserMetadata> m_parser_metadata;
|
||||
|
||||
// https://fetch.spec.whatwg.org/#concept-request-reload-navigation-flag
|
||||
// A request has an associated reload-navigation flag. Unless stated otherwise, it is unset.
|
||||
bool m_reload_navigation { false };
|
||||
|
||||
|
|
Loading…
Reference in a new issue