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 * Copyright (C) 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009 Apple Inc. All rights reserved. |
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
115 | 115 |
116 Result<StylePropertySet> animatedSMILStyleProperties() const; | 116 Result<StylePropertySet> animatedSMILStyleProperties() const; |
117 Result<StylePropertySet> ensureAnimatedSMILStyleProperties(); | 117 Result<StylePropertySet> ensureAnimatedSMILStyleProperties(); |
118 void setUseOverrideComputedStyle(bool); | 118 void setUseOverrideComputedStyle(bool); |
119 | 119 |
120 virtual bool haveLoadedRequiredResources(); | 120 virtual bool haveLoadedRequiredResources(); |
121 | 121 |
122 virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<Even tListener>, bool useCapture) OVERRIDE; | 122 virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<Even tListener>, bool useCapture) OVERRIDE; |
123 virtual bool removeEventListener(const AtomicString& eventType, EventListene r*, bool useCapture) OVERRIDE; | 123 virtual bool removeEventListener(const AtomicString& eventType, EventListene r*, bool useCapture) OVERRIDE; |
124 | 124 |
125 void accept(Visitor*) const; | |
Mads Ager (chromium)
2013/09/25 11:16:32
virtual? OVERRIDE?
zerny-chromium
2013/09/25 11:28:35
Thanks for spotting that one. Change ended up in a
| |
126 | |
125 protected: | 127 protected: |
126 SVGElement(const QualifiedName&, const Handle<Document>&, ConstructionType = CreateSVGElement); | 128 SVGElement(const QualifiedName&, const Handle<Document>&, ConstructionType = CreateSVGElement); |
127 | 129 |
128 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; | 130 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; |
129 | 131 |
130 virtual void finishParsingChildren(); | 132 virtual void finishParsingChildren(); |
131 virtual void attributeChanged(const QualifiedName&, const AtomicString&, Att ributeModificationReason = ModifiedDirectly) OVERRIDE; | 133 virtual void attributeChanged(const QualifiedName&, const AtomicString&, Att ributeModificationReason = ModifiedDirectly) OVERRIDE; |
132 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV ERRIDE; | 134 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV ERRIDE; |
133 | 135 |
134 virtual void removedFrom(const Handle<ContainerNode>&) OVERRIDE; | 136 virtual void removedFrom(const Handle<ContainerNode>&) OVERRIDE; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
184 | 186 |
185 inline SVGElement* toSVGElement(const Handle<Node>& node) | 187 inline SVGElement* toSVGElement(const Handle<Node>& node) |
186 { | 188 { |
187 return toSVGElement(node.raw()); | 189 return toSVGElement(node.raw()); |
188 } | 190 } |
189 | 191 |
190 } | 192 } |
191 | 193 |
192 #endif | 194 #endif |
193 #endif | 195 #endif |
OLD | NEW |