| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 bool isSupportedAttribute(const QualifiedName&); | 56 bool isSupportedAttribute(const QualifiedName&); |
| 57 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 57 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 58 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 58 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
| 59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 59 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
| 60 virtual void svgAttributeChanged(const QualifiedName&) override; | 60 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 61 | 61 |
| 62 virtual void attach(const AttachContext& = AttachContext()) override; | 62 virtual void attach(const AttachContext& = AttachContext()) override; |
| 63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; | 63 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 64 | 64 |
| 65 virtual RenderObject* createRenderer(const RenderStyle&) override; | 65 virtual LayoutObject* createRenderer(const RenderStyle&) override; |
| 66 | 66 |
| 67 virtual const AtomicString imageSourceURL() const override; | 67 virtual const AtomicString imageSourceURL() const override; |
| 68 | 68 |
| 69 virtual bool haveLoadedRequiredResources() override; | 69 virtual bool haveLoadedRequiredResources() override; |
| 70 | 70 |
| 71 virtual bool selfHasRelativeLengths() const override; | 71 virtual bool selfHasRelativeLengths() const override; |
| 72 virtual void didMoveToNewDocument(Document& oldDocument) override; | 72 virtual void didMoveToNewDocument(Document& oldDocument) override; |
| 73 SVGImageLoader& imageLoader() { return *m_imageLoader; } | 73 SVGImageLoader& imageLoader() { return *m_imageLoader; } |
| 74 | 74 |
| 75 RefPtrWillBeMember<SVGAnimatedLength> m_x; | 75 RefPtrWillBeMember<SVGAnimatedLength> m_x; |
| 76 RefPtrWillBeMember<SVGAnimatedLength> m_y; | 76 RefPtrWillBeMember<SVGAnimatedLength> m_y; |
| 77 RefPtrWillBeMember<SVGAnimatedLength> m_width; | 77 RefPtrWillBeMember<SVGAnimatedLength> m_width; |
| 78 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 78 RefPtrWillBeMember<SVGAnimatedLength> m_height; |
| 79 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; | 79 RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; |
| 80 | 80 |
| 81 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; | 81 OwnPtrWillBeMember<SVGImageLoader> m_imageLoader; |
| 82 bool m_needsLoaderURIUpdate : 1; | 82 bool m_needsLoaderURIUpdate : 1; |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace blink | 85 } // namespace blink |
| 86 | 86 |
| 87 #endif // SVGImageElement_h | 87 #endif // SVGImageElement_h |
| OLD | NEW |