ladybird/Libraries/LibHTTP/Cookie/IncludeCredentials.h
Timothy Flynn d75aee2a56 LibHTTP+LibWeb: Move the IncludeCredentials enum to LibHTTP
This will be sent over IPC to RequestServer in an upcoming patch.
2026-02-10 12:21:20 +01:00

18 lines
238 B
C++

/*
* Copyright (c) 2021-2026, Tim Flynn <trflynn89@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace HTTP::Cookie {
enum class IncludeCredentials : u8 {
No,
Yes,
};
}