| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 void renderFallbackContent() override {} | 84 void renderFallbackContent() override {} |
| 85 AtomicString browsingContextContainerName() const override { | 85 AtomicString browsingContextContainerName() const override { |
| 86 return getAttribute(HTMLNames::nameAttr); | 86 return getAttribute(HTMLNames::nameAttr); |
| 87 } | 87 } |
| 88 ScrollbarMode scrollingMode() const override { return ScrollbarAuto; } | 88 ScrollbarMode scrollingMode() const override { return ScrollbarAuto; } |
| 89 int marginWidth() const override { return -1; } | 89 int marginWidth() const override { return -1; } |
| 90 int marginHeight() const override { return -1; } | 90 int marginHeight() const override { return -1; } |
| 91 bool allowFullscreen() const override { return false; } | 91 bool allowFullscreen() const override { return false; } |
| 92 bool allowPaymentRequest() const override { return false; } | 92 bool allowPaymentRequest() const override { return false; } |
| 93 AtomicString csp() const override { return nullAtom; } | 93 AtomicString csp() const override { return nullAtom; } |
| 94 const WebVector<mojom::blink::PermissionName>& delegatedPermissions() | |
| 95 const override; | |
| 96 const WebVector<WebFeaturePolicyFeature>& allowedFeatures() const override; | 94 const WebVector<WebFeaturePolicyFeature>& allowedFeatures() const override; |
| 97 | 95 |
| 98 DECLARE_VIRTUAL_TRACE(); | 96 DECLARE_VIRTUAL_TRACE(); |
| 99 | 97 |
| 100 protected: | 98 protected: |
| 101 HTMLFrameOwnerElement(const QualifiedName& tagName, Document&); | 99 HTMLFrameOwnerElement(const QualifiedName& tagName, Document&); |
| 102 void setSandboxFlags(SandboxFlags); | 100 void setSandboxFlags(SandboxFlags); |
| 103 | 101 |
| 104 bool loadOrRedirectSubframe(const KURL&, | 102 bool loadOrRedirectSubframe(const KURL&, |
| 105 const AtomicString& frameName, | 103 const AtomicString& frameName, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 165 |
| 168 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, | 166 DEFINE_TYPE_CASTS(HTMLFrameOwnerElement, |
| 169 FrameOwner, | 167 FrameOwner, |
| 170 owner, | 168 owner, |
| 171 owner->isLocal(), | 169 owner->isLocal(), |
| 172 owner.isLocal()); | 170 owner.isLocal()); |
| 173 | 171 |
| 174 } // namespace blink | 172 } // namespace blink |
| 175 | 173 |
| 176 #endif // HTMLFrameOwnerElement_h | 174 #endif // HTMLFrameOwnerElement_h |
| OLD | NEW |