| Index: third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| index d931a0104ba2e0185dbc43100d494e5e12bde76c..31418b463a3944efacabf2f7f0dd7428f760b1a6 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| @@ -36,7 +36,7 @@
|
|
|
| namespace blink {
|
|
|
| -SVGTransformTearOff::SVGTransformTearOff(PassRefPtrWillBeRawPtr<SVGTransform> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
|
| +SVGTransformTearOff::SVGTransformTearOff(RawPtr<SVGTransform> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
|
| : SVGPropertyTearOff<SVGTransform>(target, contextElement, propertyIsAnimVal, attributeName)
|
| {
|
| }
|
| @@ -60,7 +60,7 @@ SVGMatrixTearOff* SVGTransformTearOff::matrix()
|
| return m_matrixTearoff.get();
|
| }
|
|
|
| -void SVGTransformTearOff::setMatrix(PassRefPtrWillBeRawPtr<SVGMatrixTearOff> matrix, ExceptionState& exceptionState)
|
| +void SVGTransformTearOff::setMatrix(RawPtr<SVGMatrixTearOff> matrix, ExceptionState& exceptionState)
|
| {
|
| if (isImmutable()) {
|
| exceptionState.throwDOMException(NoModificationAllowedError, "The attribute is read-only.");
|
|
|