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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGFELightElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGFELightElement.h b/third_party/WebKit/Source/core/svg/SVGFELightElement.h
index 6fab28e700a041becd91c902bbf4b20005b3dbfb..6bb7311fe381606343e3475bf83e42a216900442 100644
--- a/third_party/WebKit/Source/core/svg/SVGFELightElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGFELightElement.h
@@ -72,16 +72,16 @@ private:
bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; }
- RefPtrWillBeMember<SVGAnimatedNumber> m_azimuth;
- RefPtrWillBeMember<SVGAnimatedNumber> m_elevation;
- RefPtrWillBeMember<SVGAnimatedNumber> m_x;
- RefPtrWillBeMember<SVGAnimatedNumber> m_y;
- RefPtrWillBeMember<SVGAnimatedNumber> m_z;
- RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtX;
- RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtY;
- RefPtrWillBeMember<SVGAnimatedNumber> m_pointsAtZ;
- RefPtrWillBeMember<SVGAnimatedNumber> m_specularExponent;
- RefPtrWillBeMember<SVGAnimatedNumber> m_limitingConeAngle;
+ Member<SVGAnimatedNumber> m_azimuth;
+ Member<SVGAnimatedNumber> m_elevation;
+ Member<SVGAnimatedNumber> m_x;
+ Member<SVGAnimatedNumber> m_y;
+ Member<SVGAnimatedNumber> m_z;
+ Member<SVGAnimatedNumber> m_pointsAtX;
+ Member<SVGAnimatedNumber> m_pointsAtY;
+ Member<SVGAnimatedNumber> m_pointsAtZ;
+ Member<SVGAnimatedNumber> m_specularExponent;
+ Member<SVGAnimatedNumber> m_limitingConeAngle;
};
inline bool isSVGFELightElement(const SVGElement& element)
« 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