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

Side by Side Diff: Source/core/svg/SVGFEDisplacementMapElement.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) 2006 Oliver Hunt <oliver@nerget.com> 2 * Copyright (C) 2006 Oliver Hunt <oliver@nerget.com>
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 30 matching lines...) Expand all
41 SVGAnimatedString* in1() { return m_in1.get(); } 41 SVGAnimatedString* in1() { return m_in1.get(); }
42 SVGAnimatedString* in2() { return m_in2.get(); } 42 SVGAnimatedString* in2() { return m_in2.get(); }
43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x ChannelSelector.get(); } 43 SVGAnimatedEnumeration<ChannelSelectorType>* xChannelSelector() { return m_x ChannelSelector.get(); }
44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y ChannelSelector.get(); } 44 SVGAnimatedEnumeration<ChannelSelectorType>* yChannelSelector() { return m_y ChannelSelector.get(); }
45 45
46 DECLARE_VIRTUAL_TRACE(); 46 DECLARE_VIRTUAL_TRACE();
47 47
48 private: 48 private:
49 explicit SVGFEDisplacementMapElement(Document&); 49 explicit SVGFEDisplacementMapElement(Document&);
50 50
51 bool isSupportedAttribute(const QualifiedName&);
52 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& at trName) override; 51 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& at trName) override;
53 virtual void svgAttributeChanged(const QualifiedName&) override; 52 virtual void svgAttributeChanged(const QualifiedName&) override;
54 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override; 53 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override;
55 54
56 RefPtrWillBeMember<SVGAnimatedNumber> m_scale; 55 RefPtrWillBeMember<SVGAnimatedNumber> m_scale;
57 RefPtrWillBeMember<SVGAnimatedString> m_in1; 56 RefPtrWillBeMember<SVGAnimatedString> m_in1;
58 RefPtrWillBeMember<SVGAnimatedString> m_in2; 57 RefPtrWillBeMember<SVGAnimatedString> m_in2;
59 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSe lector; 58 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_xChannelSe lector;
60 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSe lector; 59 RefPtrWillBeMember<SVGAnimatedEnumeration<ChannelSelectorType>> m_yChannelSe lector;
61 }; 60 };
62 61
63 } // namespace blink 62 } // namespace blink
64 63
65 #endif // SVGFEDisplacementMapElement_h 64 #endif // SVGFEDisplacementMapElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698