| Index: third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| index 166be8966244a7c5040a7af0ea901e8f3acd400e..7cc1466fb850817366e9399fee1be55b01df5aa3 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| @@ -19,9 +19,9 @@ TranslationTransformComponent* TranslationTransformComponent::create(LengthValue
|
| return new TranslationTransformComponent(x, y, z);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSFunctionValue> TranslationTransformComponent::toCSSValue() const
|
| +RawPtr<CSSFunctionValue> TranslationTransformComponent::toCSSValue() const
|
| {
|
| - RefPtrWillBeRawPtr<CSSFunctionValue> result = CSSFunctionValue::create(is2D() ? CSSValueTranslate : CSSValueTranslate3d);
|
| + RawPtr<CSSFunctionValue> result = CSSFunctionValue::create(is2D() ? CSSValueTranslate : CSSValueTranslate3d);
|
| result->append(m_x->toCSSValue());
|
| result->append(m_y->toCSSValue());
|
| if (!is2D())
|
|
|