1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:17:35 +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

@ -19,7 +19,7 @@ namespace Web::MimeSniff {
bool is_javascript_mime_type_essence_match(DeprecatedString const& string)
{
// NOTE: The mime type parser automatically lowercases the essence.
auto type = MimeType::from_string(string);
auto type = MimeType::parse(string);
if (!type.has_value())
return false;
return type->is_javascript();
@ -64,7 +64,7 @@ static bool contains_only_http_token_code_points(StringView string)
}
// https://mimesniff.spec.whatwg.org/#parse-a-mime-type
Optional<MimeType> MimeType::from_string(StringView string)
Optional<MimeType> MimeType::parse(StringView string)
{
// 1. Remove any leading and trailing HTTP whitespace from input.
auto trimmed_string = string.trim(Fetch::Infrastructure::HTTP_WHITESPACE, TrimMode::Both);

View file

@ -17,7 +17,7 @@ bool is_javascript_mime_type_essence_match(DeprecatedString const&);
// https://mimesniff.spec.whatwg.org/#mime-type
class MimeType {
public:
static Optional<MimeType> from_string(StringView);
static Optional<MimeType> parse(StringView);
MimeType(DeprecatedString type, DeprecatedString subtype);
~MimeType();