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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedIntegerOptionalInteger.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/SVGAnimatedIntegerOptionalInteger.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedIntegerOptionalInteger.h b/third_party/WebKit/Source/core/svg/SVGAnimatedIntegerOptionalInteger.h
index 246d2186d2f1d7da88a70499c4839705784711c9..78c46f3a88c01f52ecffea0dfa6b2ff1b3b54412 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedIntegerOptionalInteger.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedIntegerOptionalInteger.h
@@ -44,12 +44,12 @@ namespace blink {
// For example, see SVGFEDropShadowElement::stdDeviation{X,Y}()
class SVGAnimatedIntegerOptionalInteger : public SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger> {
public:
- static PassRefPtrWillBeRawPtr<SVGAnimatedIntegerOptionalInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0)
+ static RawPtr<SVGAnimatedIntegerOptionalInteger> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0)
{
- return adoptRefWillBeNoop(new SVGAnimatedIntegerOptionalInteger(contextElement, attributeName, initialFirstValue, initialSecondValue));
+ return new SVGAnimatedIntegerOptionalInteger(contextElement, attributeName, initialFirstValue, initialSecondValue);
}
- void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
bool needsSynchronizeAttribute() override;
void animationEnded() override;
@@ -61,8 +61,8 @@ public:
protected:
SVGAnimatedIntegerOptionalInteger(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue, float initialSecondValue);
- RefPtrWillBeMember<SVGAnimatedInteger> m_firstInteger;
- RefPtrWillBeMember<SVGAnimatedInteger> m_secondInteger;
+ Member<SVGAnimatedInteger> m_firstInteger;
+ Member<SVGAnimatedInteger> m_secondInteger;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698