| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 SVGAnimatedLength* y() const { return m_y.get(); } | 46 SVGAnimatedLength* y() const { return m_y.get(); } |
| 47 SVGAnimatedLength* width() const { return m_width.get(); } | 47 SVGAnimatedLength* width() const { return m_width.get(); } |
| 48 SVGAnimatedLength* height() const { return m_height.get(); } | 48 SVGAnimatedLength* height() const { return m_height.get(); } |
| 49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp
ectRatio.get(); } | 49 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp
ectRatio.get(); } |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 explicit SVGImageElement(Document&); | 52 explicit SVGImageElement(Document&); |
| 53 | 53 |
| 54 virtual bool isStructurallyExternal() const override { return !hrefString().
isNull(); } | 54 virtual bool isStructurallyExternal() const override { return !hrefString().
isNull(); } |
| 55 | 55 |
| 56 bool isSupportedAttribute(const QualifiedName&); | |
| 57 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 56 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
| 58 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; | 57 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; |
| 59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 58 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
| 60 | 59 |
| 61 virtual void svgAttributeChanged(const QualifiedName&) override; | 60 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 62 | 61 |
| 63 virtual void attach(const AttachContext& = AttachContext()) override; | 62 virtual void attach(const AttachContext& = AttachContext()) override; |
| 64 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; | 63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 65 | 64 |
| 66 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; | 65 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 79 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 78 RefPtrWillBeMember<SVGAnimatedLength> m_height; |
| 80 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; | 79 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; |
| 81 | 80 |
| 82 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; | 81 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; |
| 83 bool m_needsLoaderURIUpdate : 1; | 82 bool m_needsLoaderURIUpdate : 1; |
| 84 }; | 83 }; |
| 85 | 84 |
| 86 } // namespace blink | 85 } // namespace blink |
| 87 | 86 |
| 88 #endif // SVGImageElement_h | 87 #endif // SVGImageElement_h |
| OLD | NEW |