mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
22 lines
383 B
C++
22 lines
383 B
C++
/*
|
|
* Copyright (c) 2022-2023, Linus Groh <linusg@serenityos.org>
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
namespace Web::Fetch::Infrastructure {
|
|
|
|
enum class RedirectTaint {
|
|
SameOrigin,
|
|
SameSite,
|
|
CrossSite,
|
|
};
|
|
|
|
[[nodiscard]] ByteString default_user_agent_value();
|
|
|
|
}
|