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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGFELightElement.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 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 * 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 *
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 protected: 66 protected:
67 SVGFELightElement(const QualifiedName&, Document&); 67 SVGFELightElement(const QualifiedName&, Document&);
68 68
69 private: 69 private:
70 void svgAttributeChanged(const QualifiedName&) final; 70 void svgAttributeChanged(const QualifiedName&) final;
71 void childrenChanged(const ChildrenChange&) final; 71 void childrenChanged(const ChildrenChange&) final;
72 72
73 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } 73 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
74 74
75 RefPtrWillBeMember<SVGAnimatedNumber> m_azimuth; 75 Member<SVGAnimatedNumber> m_azimuth;
76 RefPtrWillBeMember<SVGAnimatedNumber> m_elevation; 76 Member<SVGAnimatedNumber> m_elevation;
77 RefPtrWillBeMember<SVGAnimatedNumber> m_x; 77 Member<SVGAnimatedNumber> m_x;
78 RefPtrWillBeMember<SVGAnimatedNumber> m_y; 78 Member<SVGAnimatedNumber> m_y;
79 RefPtrWillBeMember<SVGAnimatedNumber> m_z; 79 Member<SVGAnimatedNumber> m_z;
80 RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtX; 80 Member<SVGAnimatedNumber> m_pointsAtX;
81 RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtY; 81 Member<SVGAnimatedNumber> m_pointsAtY;
82 RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtZ; 82 Member<SVGAnimatedNumber> m_pointsAtZ;
83 RefPtrWillBeMember<SVGAnimatedNumber> m_specularExponent; 83 Member<SVGAnimatedNumber> m_specularExponent;
84 RefPtrWillBeMember<SVGAnimatedNumber> m_limitingConeAngle; 84 Member<SVGAnimatedNumber> m_limitingConeAngle;
85 }; 85 };
86 86
87 inline bool isSVGFELightElement(const SVGElement& element) 87 inline bool isSVGFELightElement(const SVGElement& element)
88 { 88 {
89 return element.hasTagName(SVGNames::feDistantLightTag) || element.hasTagName (SVGNames::fePointLightTag) || element.hasTagName(SVGNames::feSpotLightTag); 89 return element.hasTagName(SVGNames::feDistantLightTag) || element.hasTagName (SVGNames::fePointLightTag) || element.hasTagName(SVGNames::feSpotLightTag);
90 } 90 }
91 91
92 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement); 92 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement);
93 93
94 } // namespace blink 94 } // namespace blink
95 95
96 #endif 96 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGFEMergeElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698