mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
45
Libraries/LibWeb/Cookie/ParsedCookie.h
Normal file
45
Libraries/LibWeb/Cookie/ParsedCookie.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* Copyright (c) 2021-2023, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Optional.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/Time.h>
|
||||
#include <LibIPC/Forward.h>
|
||||
#include <LibURL/Forward.h>
|
||||
#include <LibWeb/Cookie/Cookie.h>
|
||||
|
||||
namespace Web::Cookie {
|
||||
|
||||
struct ParsedCookie {
|
||||
String name;
|
||||
String value;
|
||||
SameSite same_site_attribute { SameSite::Default };
|
||||
Optional<UnixDateTime> expiry_time_from_expires_attribute {};
|
||||
Optional<UnixDateTime> expiry_time_from_max_age_attribute {};
|
||||
Optional<String> domain {};
|
||||
Optional<String> path {};
|
||||
bool secure_attribute_present { false };
|
||||
bool http_only_attribute_present { false };
|
||||
};
|
||||
|
||||
Optional<ParsedCookie> parse_cookie(URL::URL const&, StringView cookie_string);
|
||||
bool cookie_contains_invalid_control_character(StringView);
|
||||
bool domain_matches(StringView string, StringView domain_string);
|
||||
String default_path(URL::URL const&);
|
||||
|
||||
}
|
||||
|
||||
namespace IPC {
|
||||
|
||||
template<>
|
||||
ErrorOr<void> encode(Encoder&, Web::Cookie::ParsedCookie const&);
|
||||
|
||||
template<>
|
||||
ErrorOr<Web::Cookie::ParsedCookie> decode(Decoder&);
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue