| Index: third_party/WebKit/Source/core/css/cssom/MatrixTransformComponent.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/MatrixTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/MatrixTransformComponent.cpp
|
| index 69a95d99548bca899d09bf9121718e1e5e93f46b..1410ece5b6b219ea5155459dc9c435e43e0765af 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/MatrixTransformComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/MatrixTransformComponent.cpp
|
| @@ -11,9 +11,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<CSSFunctionValue> MatrixTransformComponent::toCSSValue() const
|
| +RawPtr<CSSFunctionValue> MatrixTransformComponent::toCSSValue() const
|
| {
|
| - RefPtrWillBeRawPtr<CSSFunctionValue> result = CSSFunctionValue::create(m_is2D ? CSSValueMatrix : CSSValueMatrix3d);
|
| + RawPtr<CSSFunctionValue> result = CSSFunctionValue::create(m_is2D ? CSSValueMatrix : CSSValueMatrix3d);
|
|
|
| if (m_is2D) {
|
| double values[6] = {a(), b(), c(), d(), e(), f()};
|
|
|