| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 5 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ~HTMLIFrameElement() override; | 46 ~HTMLIFrameElement() override; |
| 47 DOMTokenList* sandbox() const; | 47 DOMTokenList* sandbox() const; |
| 48 DOMTokenList* permissions() const; | 48 DOMTokenList* permissions() const; |
| 49 | 49 |
| 50 void sandboxValueWasSet(); | 50 void sandboxValueWasSet(); |
| 51 void permissionsValueWasSet(); | 51 void permissionsValueWasSet(); |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 explicit HTMLIFrameElement(Document&); | 54 explicit HTMLIFrameElement(Document&); |
| 55 | 55 |
| 56 void parseAttribute(const QualifiedName&, | 56 void parseAttribute(const AttributeModificationParams&) override; |
| 57 const AtomicString&, | |
| 58 const AtomicString&) override; | |
| 59 bool isPresentationAttribute(const QualifiedName&) const override; | 57 bool isPresentationAttribute(const QualifiedName&) const override; |
| 60 void collectStyleForPresentationAttribute(const QualifiedName&, | 58 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 61 const AtomicString&, | 59 const AtomicString&, |
| 62 MutableStylePropertySet*) override; | 60 MutableStylePropertySet*) override; |
| 63 | 61 |
| 64 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 62 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 65 void removedFrom(ContainerNode*) override; | 63 void removedFrom(ContainerNode*) override; |
| 66 | 64 |
| 67 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 65 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 68 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 66 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 95 Member<HTMLIFrameElementPermissions> m_permissions; | 93 Member<HTMLIFrameElementPermissions> m_permissions; |
| 96 | 94 |
| 97 WebVector<WebPermissionType> m_delegatedPermissions; | 95 WebVector<WebPermissionType> m_delegatedPermissions; |
| 98 | 96 |
| 99 ReferrerPolicy m_referrerPolicy; | 97 ReferrerPolicy m_referrerPolicy; |
| 100 }; | 98 }; |
| 101 | 99 |
| 102 } // namespace blink | 100 } // namespace blink |
| 103 | 101 |
| 104 #endif // HTMLIFrameElement_h | 102 #endif // HTMLIFrameElement_h |
| OLD | NEW |