1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:37:35 +00:00

AK+Tests+LibWeb: Make URL::complete_url() take a StringView

All it does is pass this to `URLParser::parse()` which takes a
StringView, so we might as well take one here too.
This commit is contained in:
Sam Atkins 2023-02-13 17:42:27 +00:00 committed by Tim Flynn
parent 8af65108e4
commit abc01cc9fe
5 changed files with 7 additions and 7 deletions

View file

@ -39,12 +39,12 @@ DeprecatedString URL::path() const
return builder.to_deprecated_string();
}
URL URL::complete_url(DeprecatedString const& string) const
URL URL::complete_url(StringView relative_url) const
{
if (!is_valid())
return {};
return URLParser::parse(string, this);
return URLParser::parse(relative_url, this);
}
void URL::set_scheme(DeprecatedString scheme)

View file

@ -88,7 +88,7 @@ public:
bool equals(URL const& other, ExcludeFragment = ExcludeFragment::No) const;
URL complete_url(DeprecatedString const&) const;
URL complete_url(StringView) const;
bool data_payload_is_base64() const { return m_data_payload_is_base64; }
DeprecatedString const& data_mime_type() const { return m_data_mime_type; }