diff options
-rw-r--r-- | Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h index bdd10a63dc..52edd1688d 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h @@ -254,6 +254,9 @@ public: [[nodiscard]] u8 redirect_count() const { return m_redirect_count; } void set_redirect_count(u8 redirect_count) { m_redirect_count = redirect_count; } + [[nodiscard]] ReferrerType const& referrer() const { return m_referrer; } + void set_referrer(ReferrerType referrer) { m_referrer = move(referrer); } + [[nodiscard]] ResponseTainting response_tainting() const { return m_response_tainting; } void set_response_tainting(ResponseTainting response_tainting) { m_response_tainting = response_tainting; } |