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 10 matching lines...) Expand all Loading... |
21 * | 21 * |
22 */ | 22 */ |
23 | 23 |
24 #ifndef HTMLIFrameElement_h | 24 #ifndef HTMLIFrameElement_h |
25 #define HTMLIFrameElement_h | 25 #define HTMLIFrameElement_h |
26 | 26 |
27 #include "core/CoreExport.h" | 27 #include "core/CoreExport.h" |
28 #include "core/html/HTMLFrameElementBase.h" | 28 #include "core/html/HTMLFrameElementBase.h" |
29 #include "core/html/HTMLIFrameElementPermissions.h" | 29 #include "core/html/HTMLIFrameElementPermissions.h" |
30 #include "core/html/HTMLIFrameElementSandbox.h" | 30 #include "core/html/HTMLIFrameElementSandbox.h" |
| 31 #include "platform/Supplementable.h" |
31 #include "public/platform/WebVector.h" | 32 #include "public/platform/WebVector.h" |
32 #include "public/platform/modules/permissions/WebPermissionType.h" | 33 #include "public/platform/modules/permissions/WebPermissionType.h" |
33 | 34 |
34 namespace blink { | 35 namespace blink { |
35 | 36 |
36 class CORE_EXPORT HTMLIFrameElement final : public HTMLFrameElementBase { | 37 class CORE_EXPORT HTMLIFrameElement final |
| 38 : public HTMLFrameElementBase, |
| 39 public Supplementable<HTMLIFrameElement> { |
37 DEFINE_WRAPPERTYPEINFO(); | 40 DEFINE_WRAPPERTYPEINFO(); |
| 41 USING_GARBAGE_COLLECTED_MIXIN(HTMLIFrameElement); |
38 | 42 |
39 public: | 43 public: |
40 DECLARE_NODE_FACTORY(HTMLIFrameElement); | 44 DECLARE_NODE_FACTORY(HTMLIFrameElement); |
41 DECLARE_VIRTUAL_TRACE(); | 45 DECLARE_VIRTUAL_TRACE(); |
42 ~HTMLIFrameElement() override; | 46 ~HTMLIFrameElement() override; |
43 DOMTokenList* sandbox() const; | 47 DOMTokenList* sandbox() const; |
44 DOMTokenList* permissions() const; | 48 DOMTokenList* permissions() const; |
45 | 49 |
46 void sandboxValueWasSet(); | 50 void sandboxValueWasSet(); |
47 void permissionsValueWasSet(); | 51 void permissionsValueWasSet(); |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 Member<HTMLIFrameElementPermissions> m_permissions; | 93 Member<HTMLIFrameElementPermissions> m_permissions; |
90 | 94 |
91 WebVector<WebPermissionType> m_delegatedPermissions; | 95 WebVector<WebPermissionType> m_delegatedPermissions; |
92 | 96 |
93 ReferrerPolicy m_referrerPolicy; | 97 ReferrerPolicy m_referrerPolicy; |
94 }; | 98 }; |
95 | 99 |
96 } // namespace blink | 100 } // namespace blink |
97 | 101 |
98 #endif // HTMLIFrameElement_h | 102 #endif // HTMLIFrameElement_h |
OLD | NEW |