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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPolyElement.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/SVGPolyElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGPolyElement.h b/third_party/WebKit/Source/core/svg/SVGPolyElement.h
index 7538faee7fda36752c10dc312b63e9ed25619ba6..d42ab3212663d22801ed421891b269826357acea 100644
--- a/third_party/WebKit/Source/core/svg/SVGPolyElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGPolyElement.h
@@ -33,8 +33,8 @@ class SVGPolyElement : public SVGGeometryElement {
public:
SVGAnimatedPointList* points() const { return m_points.get(); }
- PassRefPtrWillBeRawPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->baseVal(); }
- PassRefPtrWillBeRawPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(); }
+ RawPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->baseVal(); }
+ RawPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(); }
DECLARE_VIRTUAL_TRACE();
@@ -47,7 +47,7 @@ private:
void svgAttributeChanged(const QualifiedName&) final;
private:
- RefPtrWillBeMember<SVGAnimatedPointList> m_points;
+ Member<SVGAnimatedPointList> m_points;
};
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPolyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698