| 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, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 SVGAnimatedString* in2() { return m_in2.get(); } | 44 SVGAnimatedString* in2() { return m_in2.get(); } |
| 45 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg
Operator.get(); } | 45 SVGAnimatedEnumeration<CompositeOperationType>* svgOperator() { return m_svg
Operator.get(); } |
| 46 | 46 |
| 47 DECLARE_VIRTUAL_TRACE(); | 47 DECLARE_VIRTUAL_TRACE(); |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 explicit SVGFECompositeElement(Document&); | 50 explicit SVGFECompositeElement(Document&); |
| 51 | 51 |
| 52 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override; | 52 bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) override; |
| 53 void svgAttributeChanged(const QualifiedName&) override; | 53 void svgAttributeChanged(const QualifiedName&) override; |
| 54 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr
ide; | 54 RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; |
| 55 | 55 |
| 56 RefPtrWillBeMember<SVGAnimatedNumber> m_k1; | 56 Member<SVGAnimatedNumber> m_k1; |
| 57 RefPtrWillBeMember<SVGAnimatedNumber> m_k2; | 57 Member<SVGAnimatedNumber> m_k2; |
| 58 RefPtrWillBeMember<SVGAnimatedNumber> m_k3; | 58 Member<SVGAnimatedNumber> m_k3; |
| 59 RefPtrWillBeMember<SVGAnimatedNumber> m_k4; | 59 Member<SVGAnimatedNumber> m_k4; |
| 60 RefPtrWillBeMember<SVGAnimatedString> m_in1; | 60 Member<SVGAnimatedString> m_in1; |
| 61 RefPtrWillBeMember<SVGAnimatedString> m_in2; | 61 Member<SVGAnimatedString> m_in2; |
| 62 RefPtrWillBeMember<SVGAnimatedEnumeration<CompositeOperationType>> m_svgOper
ator; | 62 Member<SVGAnimatedEnumeration<CompositeOperationType>> m_svgOperator; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // SVGFECompositeElement_h | 67 #endif // SVGFECompositeElement_h |
| OLD | NEW |