| Index: third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp
|
| index f958e0578df08f464ac8787920d995f91622f54f..68a948c976ba768b51adb655b5cd4a4f78e7a504 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPointTearOff.cpp
|
| @@ -37,7 +37,7 @@
|
|
|
| namespace blink {
|
|
|
| -SVGPointTearOff::SVGPointTearOff(PassRefPtrWillBeRawPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
|
| +SVGPointTearOff::SVGPointTearOff(RawPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
|
| : SVGPropertyTearOff<SVGPoint>(target, contextElement, propertyIsAnimVal, attributeName)
|
| {
|
| }
|
| @@ -64,7 +64,7 @@ void SVGPointTearOff::setY(float f, ExceptionState& exceptionState)
|
| commitChange();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGPointTearOff> SVGPointTearOff::matrixTransform(PassRefPtrWillBeRawPtr<SVGMatrixTearOff> matrix)
|
| +RawPtr<SVGPointTearOff> SVGPointTearOff::matrixTransform(RawPtr<SVGMatrixTearOff> matrix)
|
| {
|
| FloatPoint point = target()->matrixTransform(matrix->value());
|
| return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal);
|
|
|