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

LibWeb/MimeSniff: Rename MimeType::from_string() to MimeType::parse()

This matches the spec's "parse a MIME type".
This commit is contained in:
Linus Groh 2023-03-03 09:27:50 +00:00
parent 65ab6d3b6f
commit fabea2a6a7
5 changed files with 7 additions and 7 deletions

View file

@ -322,7 +322,7 @@ Optional<MimeSniff::MimeType> HeaderList::extract_mime_type() const
// 6. For each value of values:
for (auto const& value : *values) {
// 1. Let temporaryMimeType be the result of parsing value.
auto temporary_mime_type = MimeSniff::MimeType::from_string(value);
auto temporary_mime_type = MimeSniff::MimeType::parse(value);
// 2. If temporaryMimeType is failure or its essence is "*/*", then continue.
if (!temporary_mime_type.has_value() || temporary_mime_type->essence() == "*/*"sv)
@ -457,7 +457,7 @@ bool is_cors_safelisted_request_header(Header const& header)
return false;
// 2. Let mimeType be the result of parsing the result of isomorphic decoding value.
auto mime_type = MimeSniff::MimeType::from_string(StringView { value });
auto mime_type = MimeSniff::MimeType::parse(StringView { value });
// 3. If mimeType is failure, then return false.
if (!mime_type.has_value())