chromium/third_party/blink/public/common/frame/fenced_frame_sandbox_flags.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_FRAME_FENCED_FRAME_SANDBOX_FLAGS_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_FRAME_FENCED_FRAME_SANDBOX_FLAGS_H_

#include "services/network/public/cpp/web_sandbox_flags.h"
#include "services/network/public/mojom/web_sandbox_flags.mojom-shared.h"

namespace blink {

// In fenced frame trees, the features of the following flags are restricted.
constexpr network::mojom::WebSandboxFlags kFencedFrameForcedSandboxFlags =;

// In fenced frame trees, the features of the following flags are allowed.
// Sandboxed frames that do not allow these features can't load fenced frames.
constexpr network::mojom::WebSandboxFlags
    kFencedFrameMandatoryUnsandboxedFlags =;

static_assert;

static_assert;

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_PUBLIC_COMMON_FRAME_FENCED_FRAME_SANDBOX_FLAGS_H_