#include "third_party/blink/renderer/core/html/html_iframe_element_sandbox.h"
#include "third_party/blink/renderer/core/html/fenced_frame/html_fenced_frame_element.h"
#include "third_party/blink/renderer/core/html/html_frame_owner_element.h"
#include "third_party/blink/renderer/core/html/html_iframe_element.h"
namespace blink {
namespace {
const char* const kSupportedSandboxTokens[] = …;
constexpr char kStorageAccessAPISandboxToken[] = …;
bool IsTokenSupported(const AtomicString& token) { … }
}
HTMLIFrameElementSandbox::HTMLIFrameElementSandbox(
HTMLFrameOwnerElement* element)
: … { … }
bool HTMLIFrameElementSandbox::ValidateTokenValue(
const AtomicString& token_value,
ExceptionState&) const { … }
}