OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005 Alexander Kellett <lypanov@kde.org> | 2 * Copyright (C) 2005 Alexander Kellett <lypanov@kde.org> |
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 22 matching lines...) Expand all Loading... |
33 namespace WebCore { | 33 namespace WebCore { |
34 | 34 |
35 class SVGMaskElement : public SVGStyledElement, | 35 class SVGMaskElement : public SVGStyledElement, |
36 public SVGTests, | 36 public SVGTests, |
37 public SVGLangSpace, | 37 public SVGLangSpace, |
38 public SVGExternalResourcesRequired { | 38 public SVGExternalResourcesRequired { |
39 DEFINE_SELF_HANDLE(SVGMaskElement) | 39 DEFINE_SELF_HANDLE(SVGMaskElement) |
40 public: | 40 public: |
41 static PassRefPtr<SVGMaskElement> create(const QualifiedName&, const Handle<
Document>&); | 41 static PassRefPtr<SVGMaskElement> create(const QualifiedName&, const Handle<
Document>&); |
42 | 42 |
| 43 virtual void accept(Visitor* visitor) const OVERRIDE { SVGStyledElement::acc
ept(visitor); } |
| 44 |
43 private: | 45 private: |
44 SVGMaskElement(const QualifiedName&, const Handle<Document>&); | 46 SVGMaskElement(const QualifiedName&, const Handle<Document>&); |
45 | 47 |
46 virtual bool isValid() const { return SVGTests::isValid(); } | 48 virtual bool isValid() const { return SVGTests::isValid(); } |
47 virtual bool needsPendingResourceHandling() const { return false; } | 49 virtual bool needsPendingResourceHandling() const { return false; } |
48 | 50 |
49 bool isSupportedAttribute(const QualifiedName&); | 51 bool isSupportedAttribute(const QualifiedName&); |
50 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 52 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
51 virtual void svgAttributeChanged(const QualifiedName&); | 53 virtual void svgAttributeChanged(const QualifiedName&); |
52 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); | 54 virtual void childrenChanged(bool changedByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); |
(...skipping 15 matching lines...) Expand all Loading... |
68 // SVGTests | 70 // SVGTests |
69 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | 71 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } |
70 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 72 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
71 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 73 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
72 }; | 74 }; |
73 | 75 |
74 } | 76 } |
75 | 77 |
76 #endif | 78 #endif |
77 #endif | 79 #endif |
OLD | NEW |