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

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, 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/SVGAnimatedAngle.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
index a3b1824c36dedac017da1446dbfea776a60c846b..009d7ef6cc3a24a42c49005275b60562b7112321 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
@@ -41,9 +41,9 @@ namespace blink {
class SVGAnimatedAngle final : public SVGAnimatedProperty<SVGAngle>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SVGAnimatedAngle> create(SVGElement* contextElement)
+ static RawPtr<SVGAnimatedAngle> create(SVGElement* contextElement)
{
- return adoptRefWillBeNoop(new SVGAnimatedAngle(contextElement));
+ return new SVGAnimatedAngle(contextElement);
}
~SVGAnimatedAngle() override;
@@ -54,7 +54,7 @@ public:
bool needsSynchronizeAttribute() override;
void synchronizeAttribute() override;
- void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
void animationEnded() override;
DECLARE_VIRTUAL_TRACE();
@@ -63,7 +63,7 @@ protected:
explicit SVGAnimatedAngle(SVGElement* contextElement);
private:
- RefPtrWillBeMember<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
+ Member<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698