mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:57:35 +00:00
Everywhere: Use unqualified AK::URL
Now possible in LibWeb now that there is no longer a Web::URL.
This commit is contained in:
parent
f9e5b43b7a
commit
9ce8189f21
156 changed files with 471 additions and 471 deletions
|
@ -53,8 +53,8 @@ public:
|
|||
[[nodiscard]] Optional<HTML::Origin> origin() const { return m_origin; }
|
||||
void set_origin(Optional<HTML::Origin> origin) { m_origin = move(origin); }
|
||||
|
||||
[[nodiscard]] Optional<AK::URL> const& about_base_url() const { return m_about_base_url; }
|
||||
void set_about_base_url(Optional<AK::URL> url) { m_about_base_url = move(url); }
|
||||
[[nodiscard]] Optional<URL> const& about_base_url() const { return m_about_base_url; }
|
||||
void set_about_base_url(Optional<URL> url) { m_about_base_url = move(url); }
|
||||
|
||||
[[nodiscard]] Vector<NestedHistory> const& nested_histories() const { return m_nested_histories; }
|
||||
[[nodiscard]] Vector<NestedHistory>& nested_histories() { return m_nested_histories; }
|
||||
|
@ -95,7 +95,7 @@ private:
|
|||
Optional<HTML::Origin> m_origin;
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-about-base-url
|
||||
Optional<AK::URL> m_about_base_url = {};
|
||||
Optional<URL> m_about_base_url = {};
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#document-state-nested-histories
|
||||
Vector<NestedHistory> m_nested_histories;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue