| Index: third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| index 28baaceb82dd54c886de45a06267efaa033ac6fd..429f0ffce7ae8793ef46521c5dc0fd56c6368b40 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.cpp
|
| @@ -9,9 +9,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<CSSFunctionValue> SkewTransformComponent::toCSSValue() const
|
| +RawPtr<CSSFunctionValue> SkewTransformComponent::toCSSValue() const
|
| {
|
| - RefPtrWillBeRawPtr<CSSFunctionValue> result = CSSFunctionValue::create(CSSValueSkew);
|
| + RawPtr<CSSFunctionValue> result = CSSFunctionValue::create(CSSValueSkew);
|
| result->append(cssValuePool().createValue(m_ax, CSSPrimitiveValue::UnitType::Number));
|
| result->append(cssValuePool().createValue(m_ay, CSSPrimitiveValue::UnitType::Number));
|
| return result.release();
|
|
|