Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1278)

Side by Side Diff: Source/core/svg/SVGFEDropShadowElement.h

Issue 1074813002: Remove isSupportedAttribute in svg (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: invalidation guard tweaks Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 28 matching lines...) Expand all
39 SVGAnimatedNumber* dy() { return m_dy.get(); } 39 SVGAnimatedNumber* dy() { return m_dy.get(); }
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 bool isSupportedAttribute(const QualifiedName&);
50 virtual void svgAttributeChanged(const QualifiedName&) override; 49 virtual void svgAttributeChanged(const QualifiedName&) override;
51 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override; 50 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override;
52 51
53 static const AtomicString& stdDeviationXIdentifier(); 52 static const AtomicString& stdDeviationXIdentifier();
54 static const AtomicString& stdDeviationYIdentifier(); 53 static const AtomicString& stdDeviationYIdentifier();
55 54
56 RefPtrWillBeMember<SVGAnimatedNumber> m_dx; 55 RefPtrWillBeMember<SVGAnimatedNumber> m_dx;
57 RefPtrWillBeMember<SVGAnimatedNumber> m_dy; 56 RefPtrWillBeMember<SVGAnimatedNumber> m_dy;
58 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_stdDeviation; 57 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_stdDeviation;
59 RefPtrWillBeMember<SVGAnimatedString> m_in1; 58 RefPtrWillBeMember<SVGAnimatedString> m_in1;
60 }; 59 };
61 60
62 } // namespace blink 61 } // namespace blink
63 62
64 #endif // SVGFEDropShadowElement_h 63 #endif // SVGFEDropShadowElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698