| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2014 Google, Inc. | 4 * Copyright (C) 2014 Google, Inc. |
| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 124 |
| 125 private: | 125 private: |
| 126 explicit SVGSVGElement(Document&); | 126 explicit SVGSVGElement(Document&); |
| 127 virtual ~SVGSVGElement(); | 127 virtual ~SVGSVGElement(); |
| 128 | 128 |
| 129 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 129 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 130 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 130 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
| 131 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; | 131 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; |
| 132 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 132 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
| 133 | 133 |
| 134 virtual bool layoutObjectIsNeeded(const LayoutStyle&) override; | 134 virtual bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 135 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; | 135 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 136 | 136 |
| 137 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; | 137 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 138 virtual void removedFrom(ContainerNode*) override; | 138 virtual void removedFrom(ContainerNode*) override; |
| 139 | 139 |
| 140 virtual void svgAttributeChanged(const QualifiedName&) override; | 140 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 141 | 141 |
| 142 virtual bool selfHasRelativeLengths() const override; | 142 virtual bool selfHasRelativeLengths() const override; |
| 143 | 143 |
| 144 void inheritViewAttributes(SVGViewElement*); | 144 void inheritViewAttributes(SVGViewElement*); |
| 145 | 145 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 166 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; | 166 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; |
| 167 RefPtrWillBeMember<SVGPoint> m_translation; | 167 RefPtrWillBeMember<SVGPoint> m_translation; |
| 168 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; | 168 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; |
| 169 | 169 |
| 170 friend class SVGCurrentTranslateTearOff; | 170 friend class SVGCurrentTranslateTearOff; |
| 171 }; | 171 }; |
| 172 | 172 |
| 173 } // namespace blink | 173 } // namespace blink |
| 174 | 174 |
| 175 #endif // SVGSVGElement_h | 175 #endif // SVGSVGElement_h |
| OLD | NEW |