| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 123 |
| 124 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; | 124 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; |
| 125 bool isPresentationAttribute(const QualifiedName&) const override; | 125 bool isPresentationAttribute(const QualifiedName&) const override; |
| 126 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; | 126 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; |
| 127 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; | 127 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; |
| 128 | 128 |
| 129 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 129 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 130 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 130 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 131 | 131 |
| 132 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 132 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 133 void removedFrom(ContainerNode*) override; | 133 void removedFrom(ContainerNode* insertionPoint, Node* next) override; |
| 134 | 134 |
| 135 void svgAttributeChanged(const QualifiedName&) override; | 135 void svgAttributeChanged(const QualifiedName&) override; |
| 136 | 136 |
| 137 bool selfHasRelativeLengths() const override; | 137 bool selfHasRelativeLengths() const override; |
| 138 | 138 |
| 139 void inheritViewAttributes(SVGViewElement*); | 139 void inheritViewAttributes(SVGViewElement*); |
| 140 | 140 |
| 141 void updateCurrentTranslate(); | 141 void updateCurrentTranslate(); |
| 142 | 142 |
| 143 void finishParsingChildren() override; | 143 void finishParsingChildren() override; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 161 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; | 161 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; |
| 162 RefPtrWillBeMember<SVGPoint> m_translation; | 162 RefPtrWillBeMember<SVGPoint> m_translation; |
| 163 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; | 163 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; |
| 164 | 164 |
| 165 friend class SVGCurrentTranslateTearOff; | 165 friend class SVGCurrentTranslateTearOff; |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 } // namespace blink | 168 } // namespace blink |
| 169 | 169 |
| 170 #endif // SVGSVGElement_h | 170 #endif // SVGSVGElement_h |
| OLD | NEW |