| Index: third_party/WebKit/Source/core/svg/SVGAnimatedLength.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedLength.h b/third_party/WebKit/Source/core/svg/SVGAnimatedLength.h
|
| index 6ef65684d7307710308d75d3140121179b0e32da..204b87bb9581d573957a8a90ab1bab90170b4652 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedLength.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedLength.h
|
| @@ -39,16 +39,16 @@ namespace blink {
|
| class SVGAnimatedLength : public SVGAnimatedProperty<SVGLength> {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGLength> initialValue)
|
| + static RawPtr<SVGAnimatedLength> create(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGLength> initialValue)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedLength(contextElement, attributeName, initialValue));
|
| + return (new SVGAnimatedLength(contextElement, attributeName, initialValue));
|
| }
|
|
|
| void setDefaultValueAsString(const String&);
|
| SVGParsingError setBaseValueAsString(const String&) override;
|
|
|
| protected:
|
| - SVGAnimatedLength(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGLength> initialValue)
|
| + SVGAnimatedLength(SVGElement* contextElement, const QualifiedName& attributeName, RawPtr<SVGLength> initialValue)
|
| : SVGAnimatedProperty<SVGLength>(contextElement, attributeName, initialValue)
|
| {
|
| }
|
|
|