mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
46 lines
902 B
C
46 lines
902 B
C
![]() |
/*
|
||
|
* Copyright (c) 2024, Andrew Kaster <akaster@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/String.h>
|
||
|
#include <AK/URL.h>
|
||
|
#include <LibIPC/Forward.h>
|
||
|
#include <LibWeb/HTML/Origin.h>
|
||
|
#include <LibWeb/HTML/PolicyContainers.h>
|
||
|
|
||
|
namespace Web::HTML {
|
||
|
|
||
|
enum class CanUseCrossOriginIsolatedAPIs {
|
||
|
No,
|
||
|
Yes,
|
||
|
};
|
||
|
|
||
|
struct SerializedEnvironmentSettingsObject {
|
||
|
String id;
|
||
|
URL creation_url;
|
||
|
URL top_level_creation_url;
|
||
|
Origin top_level_origin;
|
||
|
|
||
|
String api_url_character_encoding;
|
||
|
URL api_base_url;
|
||
|
Origin origin;
|
||
|
PolicyContainer policy_container;
|
||
|
CanUseCrossOriginIsolatedAPIs cross_origin_isolated_capability;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
namespace IPC {
|
||
|
|
||
|
template<>
|
||
|
ErrorOr<void> encode(Encoder&, Web::HTML::SerializedEnvironmentSettingsObject const&);
|
||
|
|
||
|
template<>
|
||
|
ErrorOr<Web::HTML::SerializedEnvironmentSettingsObject> decode(Decoder&);
|
||
|
|
||
|
}
|