| Index: third_party/WebKit/Source/core/css/resolver/TransformBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/TransformBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/TransformBuilder.cpp
|
| index 8a96b8d0d13f84cd5604c561d856e8a5a940faae..8f5aa4631fbd0aab965b2b9904403ddb6d983787 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/TransformBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/TransformBuilder.cpp
|
| @@ -89,7 +89,7 @@ void TransformBuilder::createTransformOperations(const CSSValue& inValue, const
|
|
|
| float zoomFactor = conversionData.zoom();
|
| for (auto& value : toCSSValueList(inValue)) {
|
| - CSSFunctionValue* transformValue = toCSSFunctionValue(value.get());
|
| + const CSSFunctionValue* transformValue = toCSSFunctionValue(value.get());
|
| TransformOperation::OperationType transformType = getTransformOperationType(transformValue->functionType());
|
|
|
| const CSSPrimitiveValue* firstValue = toCSSPrimitiveValue(transformValue->item(0));
|
|
|