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

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

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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) 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 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com> 4 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #ifndef SVGFEDiffuseLightingElement_h 22 #ifndef SVGFEDiffuseLightingElement_h
23 #define SVGFEDiffuseLightingElement_h 23 #define SVGFEDiffuseLightingElement_h
24 24
25 #include "core/SVGNames.h" 25 #include "core/SVGNames.h"
26 #include "core/svg/SVGAnimatedNumberOptionalNumber.h" 26 #include "core/svg/SVGAnimatedNumberOptionalNumber.h"
27 #include "core/svg/SVGFELightElement.h" 27 #include "core/svg/SVGFELightElement.h"
28 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" 28 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
29 #include "platform/heap/Handle.h"
29 30
30 namespace blink { 31 namespace blink {
31 32
32 class SVGFEDiffuseLightingElement final : public SVGFilterPrimitiveStandardAttri butes { 33 class SVGFEDiffuseLightingElement final : public SVGFilterPrimitiveStandardAttri butes {
33 DEFINE_WRAPPERTYPEINFO(); 34 DEFINE_WRAPPERTYPEINFO();
34 public: 35 public:
35 DECLARE_NODE_FACTORY(SVGFEDiffuseLightingElement); 36 DECLARE_NODE_FACTORY(SVGFEDiffuseLightingElement);
36 void lightElementAttributeChanged(const SVGFELightElement*, const QualifiedN ame&); 37 void lightElementAttributeChanged(const SVGFELightElement*, const QualifiedN ame&);
37 38
38 SVGAnimatedNumber* diffuseConstant() { return m_diffuseConstant.get(); } 39 SVGAnimatedNumber* diffuseConstant() { return m_diffuseConstant.get(); }
39 SVGAnimatedNumber* surfaceScale() { return m_surfaceScale.get(); } 40 SVGAnimatedNumber* surfaceScale() { return m_surfaceScale.get(); }
40 SVGAnimatedNumber* kernelUnitLengthX() { return m_kernelUnitLength->firstNum ber(); } 41 SVGAnimatedNumber* kernelUnitLengthX() { return m_kernelUnitLength->firstNum ber(); }
41 SVGAnimatedNumber* kernelUnitLengthY() { return m_kernelUnitLength->secondNu mber(); } 42 SVGAnimatedNumber* kernelUnitLengthY() { return m_kernelUnitLength->secondNu mber(); }
42 SVGAnimatedString* in1() { return m_in1.get(); } 43 SVGAnimatedString* in1() { return m_in1.get(); }
43 44
45 virtual void trace(Visitor*) override;
46
44 private: 47 private:
45 explicit SVGFEDiffuseLightingElement(Document&); 48 explicit SVGFEDiffuseLightingElement(Document&);
46 49
47 bool isSupportedAttribute(const QualifiedName&); 50 bool isSupportedAttribute(const QualifiedName&);
48 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide; 51 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr ide;
49 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o verride; 52 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&) o verride;
50 virtual void svgAttributeChanged(const QualifiedName&) override; 53 virtual void svgAttributeChanged(const QualifiedName&) override;
51 virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; 54 virtual PassRefPtrWillBeRawPtr<FilterEffect> build(SVGFilterBuilder*, Filter *) override;
52 55
53 RefPtr<SVGAnimatedNumber> m_diffuseConstant; 56 RefPtrWillBeMember<SVGAnimatedNumber> m_diffuseConstant;
54 RefPtr<SVGAnimatedNumber> m_surfaceScale; 57 RefPtrWillBeMember<SVGAnimatedNumber> m_surfaceScale;
55 RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength; 58 RefPtrWillBeMember<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
56 RefPtr<SVGAnimatedString> m_in1; 59 RefPtrWillBeMember<SVGAnimatedString> m_in1;
57 }; 60 };
58 61
59 } // namespace blink 62 } // namespace blink
60 63
61 #endif // SVGFEDiffuseLightingElement_h 64 #endif // SVGFEDiffuseLightingElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFEConvolveMatrixElement.cpp ('k') | Source/core/svg/SVGFEDiffuseLightingElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698