// Copyright 2017 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_RENDERER_CORE_PERMISSIONS_POLICY_IFRAME_POLICY_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_PERMISSIONS_POLICY_IFRAME_POLICY_H_ #include "third_party/blink/renderer/core/permissions_policy/dom_feature_policy.h" #include "third_party/blink/renderer/platform/heap/member.h" #include "third_party/blink/renderer/platform/weborigin/security_origin.h" namespace blink { // IFramePolicy inherits Policy. It represents the permissions policy of an // iframe contained in a document, as seen from that document (not including any // information private to that frame). It is synthesized from the parent // document's policy and the iframe's container policy. class IFramePolicy final : public DOMFeaturePolicy { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_PERMISSIONS_POLICY_IFRAME_POLICY_H_