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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStaticStringList.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/SVGStaticStringList.h
diff --git a/third_party/WebKit/Source/core/svg/SVGStaticStringList.h b/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
index 6abf71d4d946f707692a25df56dada29ee05e948..b6bcaac7ec7e25d7778876c0a7abad555b1d6a9a 100644
--- a/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
+++ b/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
@@ -43,9 +43,9 @@ class SVGElement;
// Inherits SVGAnimatedPropertyBase to enable XML attribute synchronization, but this is never animated.
class SVGStaticStringList final : public SVGAnimatedPropertyBase {
public:
- static PassRefPtrWillBeRawPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
+ static RawPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
{
- return adoptRefWillBeNoop(new SVGStaticStringList(contextElement, attributeName));
+ return new SVGStaticStringList(contextElement, attributeName);
}
~SVGStaticStringList() override;
@@ -54,8 +54,8 @@ public:
SVGPropertyBase* currentValueBase() override;
const SVGPropertyBase& baseValueBase() const override;
bool isAnimating() const override;
- PassRefPtrWillBeRawPtr<SVGPropertyBase> createAnimatedValue() override;
- void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ RawPtr<SVGPropertyBase> createAnimatedValue() override;
+ void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
void animationEnded() override;
bool needsSynchronizeAttribute() override;
@@ -69,8 +69,8 @@ public:
private:
SVGStaticStringList(SVGElement*, const QualifiedName&);
- RefPtrWillBeMember<SVGStringList> m_value;
- RefPtrWillBeMember<SVGStringListTearOff> m_tearOff;
+ Member<SVGStringList> m_value;
+ Member<SVGStringListTearOff> m_tearOff;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGScriptElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698