| 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 7ac5b81ffa785009a89cbd4458f8910b9f75645f..2fee9226c288feea05bb0199d999c3179d420442 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "core/svg/SVGTransformTearOff.h"
|
|
|
| #include "core/svg/SVGElement.h"
|
| +#include "core/svg/SVGMatrixTearOff.h"
|
|
|
| namespace blink {
|
|
|
| @@ -49,6 +50,11 @@ DEFINE_TRACE(SVGTransformTearOff)
|
| SVGPropertyTearOff<SVGTransform>::trace(visitor);
|
| }
|
|
|
| +SVGTransformTearOff* SVGTransformTearOff::create(SVGMatrixTearOff* matrix)
|
| +{
|
| + return create(SVGTransform::create(matrix->value()), nullptr, PropertyIsNotAnimVal);
|
| +}
|
| +
|
| SVGMatrixTearOff* SVGTransformTearOff::matrix()
|
| {
|
| if (!m_matrixTearoff)
|
|
|