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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.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/SVGAnimatedLengthList.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.h b/third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.h
index d0455b57dbaa19f13ced15e393c2fbcbf57ee311..66cf5f18b1e510d89fa4c19a6907e6f0491fda5c 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.h
@@ -41,13 +41,13 @@ namespace blink {
class SVGAnimatedLengthList final : public SVGAnimatedProperty<SVGLengthList>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<SVGAnimatedLengthList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGLengthList> initialValue)
+ static RawPtr<SVGAnimatedLengthList> create(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGLengthList> initialValue)
{
- return adoptRefWillBeNoop(new SVGAnimatedLengthList(contextElement, attributeName, initialValue));
+ return new SVGAnimatedLengthList(contextElement, attributeName, initialValue);
}
protected:
- SVGAnimatedLengthList(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGLengthList> initialValue)
+ SVGAnimatedLengthList(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGLengthList> initialValue)
: SVGAnimatedProperty<SVGLengthList>(contextElement, attributeName, initialValue) { }
};
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAnimatedLength.idl ('k') | third_party/WebKit/Source/core/svg/SVGAnimatedLengthList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698