| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| 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 29 matching lines...) Expand all Loading... |
| 40 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); } | 40 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); } |
| 41 SVGAnimatedNumber* stdDeviationY() { return m_stdDeviation->secondNumber();
} | 41 SVGAnimatedNumber* stdDeviationY() { return m_stdDeviation->secondNumber();
} |
| 42 SVGAnimatedString* in1() { return m_in1.get(); } | 42 SVGAnimatedString* in1() { return m_in1.get(); } |
| 43 | 43 |
| 44 DECLARE_VIRTUAL_TRACE(); | 44 DECLARE_VIRTUAL_TRACE(); |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 explicit SVGFEDropShadowElement(Document&); | 47 explicit SVGFEDropShadowElement(Document&); |
| 48 | 48 |
| 49 void svgAttributeChanged(const QualifiedName&) override; | 49 void svgAttributeChanged(const QualifiedName&) override; |
| 50 PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) overr
ide; | 50 RawPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; |
| 51 | 51 |
| 52 static const AtomicString& stdDeviationXIdentifier(); | 52 static const AtomicString& stdDeviationXIdentifier(); |
| 53 static const AtomicString& stdDeviationYIdentifier(); | 53 static const AtomicString& stdDeviationYIdentifier(); |
| 54 | 54 |
| 55 RefPtrWillBeMember<SVGAnimatedNumber> m_dx; | 55 Member<SVGAnimatedNumber> m_dx; |
| 56 RefPtrWillBeMember<SVGAnimatedNumber> m_dy; | 56 Member<SVGAnimatedNumber> m_dy; |
| 57 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_stdDeviation; | 57 Member<SVGAnimatedNumberOptionalNumber> m_stdDeviation; |
| 58 RefPtrWillBeMember<SVGAnimatedString> m_in1; | 58 Member<SVGAnimatedString> m_in1; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace blink | 61 } // namespace blink |
| 62 | 62 |
| 63 #endif // SVGFEDropShadowElement_h | 63 #endif // SVGFEDropShadowElement_h |
| OLD | NEW |