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

Unified Diff: third_party/WebKit/Source/core/svg/SVGComponentTransferFunctionElement.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/SVGComponentTransferFunctionElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGComponentTransferFunctionElement.h b/third_party/WebKit/Source/core/svg/SVGComponentTransferFunctionElement.h
index a0c755e8c0bf0fd0e594a03892e0e2278590b5e6..a2419aadd98edacd556e6567efdcb4e4cc86c3c1 100644
--- a/third_party/WebKit/Source/core/svg/SVGComponentTransferFunctionElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGComponentTransferFunctionElement.h
@@ -55,13 +55,13 @@ protected:
bool layoutObjectIsNeeded(const ComputedStyle&) final { return false; }
private:
- RefPtrWillBeMember<SVGAnimatedNumberList> m_tableValues;
- RefPtrWillBeMember<SVGAnimatedNumber> m_slope;
- RefPtrWillBeMember<SVGAnimatedNumber> m_intercept;
- RefPtrWillBeMember<SVGAnimatedNumber> m_amplitude;
- RefPtrWillBeMember<SVGAnimatedNumber> m_exponent;
- RefPtrWillBeMember<SVGAnimatedNumber> m_offset;
- RefPtrWillBeMember<SVGAnimatedEnumeration<ComponentTransferType>> m_type;
+ Member<SVGAnimatedNumberList> m_tableValues;
+ Member<SVGAnimatedNumber> m_slope;
+ Member<SVGAnimatedNumber> m_intercept;
+ Member<SVGAnimatedNumber> m_amplitude;
+ Member<SVGAnimatedNumber> m_exponent;
+ Member<SVGAnimatedNumber> m_offset;
+ Member<SVGAnimatedEnumeration<ComponentTransferType>> m_type;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGClipPathElement.h ('k') | third_party/WebKit/Source/core/svg/SVGCursorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698