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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGradientElement.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/SVGGradientElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGGradientElement.h b/third_party/WebKit/Source/core/svg/SVGGradientElement.h
index b77dbaafcb170e963a03212f04d2b36d80874a9d..9cd615beef8cf991231c6b98656e2ce42d5ba30c 100644
--- a/third_party/WebKit/Source/core/svg/SVGGradientElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGGradientElement.h
@@ -43,7 +43,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGSpreadMe
class SVGGradientElement : public SVGElement,
public SVGURIReference {
DEFINE_WRAPPERTYPEINFO();
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGGradientElement);
+ USING_GARBAGE_COLLECTED_MIXIN(SVGGradientElement);
public:
Vector<Gradient::ColorStop> buildStops();
@@ -63,9 +63,9 @@ private:
void childrenChanged(const ChildrenChange&) final;
- RefPtrWillBeMember<SVGAnimatedTransformList> m_gradientTransform;
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGSpreadMethodType>> m_spreadMethod;
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_gradientUnits;
+ Member<SVGAnimatedTransformList> m_gradientTransform;
+ Member<SVGAnimatedEnumeration<SVGSpreadMethodType>> m_spreadMethod;
+ Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> m_gradientUnits;
};
inline bool isSVGGradientElement(const SVGElement& element)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGGraphicsElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698