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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimateElement.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/SVGAnimateElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimateElement.h b/third_party/WebKit/Source/core/svg/SVGAnimateElement.h
index 296b6edad045abbeaa5d1e16fa2bf09b6694bed9..97ccfa1ca8fe55d7bff32576d52d286119a0a868 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimateElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimateElement.h
@@ -38,7 +38,7 @@ class SVGAnimatedTypeAnimator;
class CORE_EXPORT SVGAnimateElement : public SVGAnimationElement {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SVGAnimateElement> create(Document&);
+ static RawPtr<SVGAnimateElement> create(Document&);
~SVGAnimateElement() override;
DECLARE_VIRTUAL_TRACE();
@@ -74,10 +74,10 @@ private:
bool hasValidAttributeType() override;
- RefPtrWillBeMember<SVGPropertyBase> m_fromProperty;
- RefPtrWillBeMember<SVGPropertyBase> m_toProperty;
- RefPtrWillBeMember<SVGPropertyBase> m_toAtEndOfDurationProperty;
- RefPtrWillBeMember<SVGPropertyBase> m_animatedProperty;
+ Member<SVGPropertyBase> m_fromProperty;
+ Member<SVGPropertyBase> m_toProperty;
+ Member<SVGPropertyBase> m_toAtEndOfDurationProperty;
+ Member<SVGPropertyBase> m_animatedProperty;
SVGAnimatedTypeAnimator m_animator;
};
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAngleTearOff.cpp ('k') | third_party/WebKit/Source/core/svg/SVGAnimateElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698