OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 private: | 44 private: |
45 explicit SVGForeignObjectElement(Document&); | 45 explicit SVGForeignObjectElement(Document&); |
46 | 46 |
47 bool isSupportedAttribute(const QualifiedName&); | 47 bool isSupportedAttribute(const QualifiedName&); |
48 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 48 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
49 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; | 49 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; |
50 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 50 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
51 virtual void svgAttributeChanged(const QualifiedName&) override; | 51 virtual void svgAttributeChanged(const QualifiedName&) override; |
52 | 52 |
53 virtual bool layoutObjectIsNeeded(const LayoutStyle&) override; | 53 virtual bool layoutObjectIsNeeded(const ComputedStyle&) override; |
54 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; | 54 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
55 | 55 |
56 virtual bool selfHasRelativeLengths() const override; | 56 virtual bool selfHasRelativeLengths() const override; |
57 | 57 |
58 RefPtrWillBeMember<SVGAnimatedLength> m_x; | 58 RefPtrWillBeMember<SVGAnimatedLength> m_x; |
59 RefPtrWillBeMember<SVGAnimatedLength> m_y; | 59 RefPtrWillBeMember<SVGAnimatedLength> m_y; |
60 RefPtrWillBeMember<SVGAnimatedLength> m_width; | 60 RefPtrWillBeMember<SVGAnimatedLength> m_width; |
61 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 61 RefPtrWillBeMember<SVGAnimatedLength> m_height; |
62 }; | 62 }; |
63 | 63 |
64 } // namespace blink | 64 } // namespace blink |
65 | 65 |
66 #endif // SVGForeignObjectElement_h | 66 #endif // SVGForeignObjectElement_h |
OLD | NEW |