| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 class SVGFETileElement final : public SVGFilterPrimitiveStandardAttributes { | 29 class SVGFETileElement final : public SVGFilterPrimitiveStandardAttributes { |
| 30 DEFINE_WRAPPERTYPEINFO(); | 30 DEFINE_WRAPPERTYPEINFO(); |
| 31 public: | 31 public: |
| 32 DECLARE_NODE_FACTORY(SVGFETileElement); | 32 DECLARE_NODE_FACTORY(SVGFETileElement); |
| 33 SVGAnimatedString* in1() { return m_in1.get(); } | 33 SVGAnimatedString* in1() { return m_in1.get(); } |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 explicit SVGFETileElement(Document&); | 36 explicit SVGFETileElement(Document&); |
| 37 | 37 |
| 38 bool isSupportedAttribute(const QualifiedName&); | |
| 39 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 38 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 40 virtual void svgAttributeChanged(const QualifiedName&) override; | 39 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 41 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; | 40 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; |
| 42 | 41 |
| 43 RefPtr<SVGAnimatedString> m_in1; | 42 RefPtr<SVGAnimatedString> m_in1; |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // namespace blink | 45 } // namespace blink |
| 47 | 46 |
| 48 #endif // SVGFETileElement_h | 47 #endif // SVGFETileElement_h |
| OLD | NEW |