| Index: third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| index 39aaeabe843efd55b41a093caaf5a3543b406c7e..448e108a64c0083161dc7f9770bfc1e7762402ba 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| @@ -32,9 +32,9 @@ namespace blink {
|
|
|
| class SVGAnimatedPathLength final : public SVGAnimatedNumber {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedPathLength> create(SVGPathElement* contextElement)
|
| + static RawPtr<SVGAnimatedPathLength> create(SVGPathElement* contextElement)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedPathLength(contextElement));
|
| + return new SVGAnimatedPathLength(contextElement);
|
| }
|
|
|
| SVGParsingError setBaseValueAsString(const String& value) override
|
| @@ -107,7 +107,7 @@ float SVGPathElement::getTotalLength()
|
| return SVGPathQuery(pathByteStream()).getTotalLength();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPointTearOff> SVGPathElement::getPointAtLength(float length)
|
| +RawPtr<SVGPointTearOff> SVGPathElement::getPointAtLength(float length)
|
| {
|
| document().updateLayoutIgnorePendingStylesheets();
|
| FloatPoint point = SVGPathQuery(pathByteStream()).getPointAtLength(length);
|
|
|