
This will be used to transfer information about the parent context to DedicatedWorkers and future out-of-process Worker/Worklet implementations for fetching purposes. In order to properly check same-origin and other policies, we need to know more about the outside settings than we were previously passing to the WebWorker process.
45 lines
902 B
C++
45 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&);
|
|
|
|
}
|