mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
19 lines
238 B
C++
19 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,
|
|
};
|
|
|
|
}
|