| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann |
| 3 * <zimmermann@kde.org> | 3 * <zimmermann@kde.org> |
| 4 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 DECLARE_VIRTUAL_TRACE(); | 61 DECLARE_VIRTUAL_TRACE(); |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 explicit SVGUseElement(Document&); | 64 explicit SVGUseElement(Document&); |
| 65 | 65 |
| 66 void dispose(); | 66 void dispose(); |
| 67 | 67 |
| 68 FloatRect getBBox() override; | 68 FloatRect getBBox() override; |
| 69 | 69 |
| 70 bool isPresentationAttribute(const QualifiedName&) const override; | |
| 71 void collectStyleForPresentationAttribute(const QualifiedName&, | 70 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 72 const AtomicString&, | 71 const AtomicString&, |
| 73 MutableStylePropertySet*) override; | 72 MutableStylePropertySet*) override; |
| 74 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; | |
| 75 | 73 |
| 76 bool isStructurallyExternal() const override; | 74 bool isStructurallyExternal() const override; |
| 77 | 75 |
| 78 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 76 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 79 void removedFrom(ContainerNode*) override; | 77 void removedFrom(ContainerNode*) override; |
| 80 | 78 |
| 81 void svgAttributeChanged(const QualifiedName&) override; | 79 void svgAttributeChanged(const QualifiedName&) override; |
| 82 | 80 |
| 83 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 81 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 84 | 82 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 bool m_elementIdentifierIsLocal; | 119 bool m_elementIdentifierIsLocal; |
| 122 bool m_haveFiredLoadEvent; | 120 bool m_haveFiredLoadEvent; |
| 123 bool m_needsShadowTreeRecreation; | 121 bool m_needsShadowTreeRecreation; |
| 124 Member<SVGElement> m_targetElementInstance; | 122 Member<SVGElement> m_targetElementInstance; |
| 125 Member<DocumentResource> m_resource; | 123 Member<DocumentResource> m_resource; |
| 126 }; | 124 }; |
| 127 | 125 |
| 128 } // namespace blink | 126 } // namespace blink |
| 129 | 127 |
| 130 #endif // SVGUseElement_h | 128 #endif // SVGUseElement_h |
| OLD | NEW |