| Index: third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp b/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
|
| index bcc17bd550cb53373ccf1f4cb4de6b80a6092b8e..9184695e9741acd3252c573abca92ee324f05fce 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/TransformValue.cpp
|
| @@ -54,9 +54,9 @@ bool TransformValue::is2D() const
|
| return true;
|
| }
|
|
|
| -RawPtr<CSSValue> TransformValue::toCSSValue() const
|
| +CSSValue* TransformValue::toCSSValue() const
|
| {
|
| - RawPtr<CSSValueList> transformCSSValue = CSSValueList::createSpaceSeparated();
|
| + CSSValueList* transformCSSValue = CSSValueList::createSpaceSeparated();
|
| for (size_t i = 0; i < m_transformComponents.size(); i++) {
|
| transformCSSValue->append(m_transformComponents[i]->toCSSValue());
|
| }
|
|
|