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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedAngle.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, 10 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/SVGAnimatedAngle.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
index fd6d86712ffb3556698a3a4586bee36fec5e18ab..a788754246836a49d2a41c70579a84363d539a3c 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
@@ -42,9 +42,9 @@ class SVGMarkerElement;
class SVGAnimatedAngle final : public SVGAnimatedProperty<SVGAngle> {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement)
+ static RawPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement)
{
- return adoptRefWillBeNoop(new SVGAnimatedAngle(contextElement));
+ return (new SVGAnimatedAngle(contextElement));
}
~SVGAnimatedAngle() override;
@@ -55,7 +55,7 @@ public:
void synchronizeAttribute() override;
- void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
void animationEnded() override;
DECLARE_VIRTUAL_TRACE();
@@ -64,7 +64,7 @@ protected:
explicit SVGAnimatedAngle(SVGMarkerElement* contextElement);
private:
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
+ Member<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698