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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTextPositioningElement.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/SVGTextPositioningElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h b/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
index 618a35f4a1f5c32abc682af9d429114a86471fcd..3f2fc8baaf47f9a584429272cb7aa8b5563c64c6 100644
--- a/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
@@ -48,11 +48,11 @@ protected:
void svgAttributeChanged(const QualifiedName&) final;
bool isTextPositioning() const final { return true; }
- RefPtrWillBeMember<SVGAnimatedLengthList> m_x;
- RefPtrWillBeMember<SVGAnimatedLengthList> m_y;
- RefPtrWillBeMember<SVGAnimatedLengthList> m_dx;
- RefPtrWillBeMember<SVGAnimatedLengthList> m_dy;
- RefPtrWillBeMember<SVGAnimatedNumberList> m_rotate;
+ Member<SVGAnimatedLengthList> m_x;
+ Member<SVGAnimatedLengthList> m_y;
+ Member<SVGAnimatedLengthList> m_dx;
+ Member<SVGAnimatedLengthList> m_dy;
+ Member<SVGAnimatedNumberList> m_rotate;
};
inline bool isSVGTextPositioningElement(const SVGElement& element)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTextPathElement.h ('k') | third_party/WebKit/Source/core/svg/SVGTitleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698