mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +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
35
Libraries/LibWeb/HTML/EmbedderPolicy.cpp
Normal file
35
Libraries/LibWeb/HTML/EmbedderPolicy.cpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/HTML/EmbedderPolicy.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
StringView embedder_policy_value_to_string(EmbedderPolicyValue embedder_policy_value)
|
||||
{
|
||||
switch (embedder_policy_value) {
|
||||
case EmbedderPolicyValue::UnsafeNone:
|
||||
return "unsafe-none"sv;
|
||||
case EmbedderPolicyValue::RequireCorp:
|
||||
return "require-corp"sv;
|
||||
case EmbedderPolicyValue::Credentialless:
|
||||
return "credentialless"sv;
|
||||
}
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
Optional<EmbedderPolicyValue> embedder_policy_value_from_string(StringView string)
|
||||
{
|
||||
if (string.equals_ignoring_ascii_case("unsafe-none"sv))
|
||||
return EmbedderPolicyValue::UnsafeNone;
|
||||
if (string.equals_ignoring_ascii_case("require-corp"sv))
|
||||
return EmbedderPolicyValue::RequireCorp;
|
||||
if (string.equals_ignoring_ascii_case("credentialless"sv))
|
||||
return EmbedderPolicyValue::Credentialless;
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue