ladybird/Userland/Libraries/LibWeb/Cookie/ParsedCookie.h
Valtteri Koskivuori f2c02077ba Userland: Remove a few gratuitous IPC namespace qualifiers
Spotted this while trying to search for specific IPC encode/decode
implementations. Now they are all the same, so searching is easier.
2022-04-03 15:18:20 +01:00

36 lines
817 B
C++

/*
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Optional.h>
#include <AK/String.h>
#include <LibCore/DateTime.h>
#include <LibIPC/Forward.h>
namespace Web::Cookie {
struct ParsedCookie {
String name;
String value;
Optional<Core::DateTime> expiry_time_from_expires_attribute {};
Optional<Core::DateTime> 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(String const& cookie_string);
}
namespace IPC {
bool encode(Encoder&, Web::Cookie::ParsedCookie const&);
ErrorOr<void> decode(Decoder&, Web::Cookie::ParsedCookie&);
}