mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
18 lines
238 B
C++
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,
|
|
};
|
|
|
|
}
|