| Index: Source/core/animation/css/CSSAnimations.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimations.cpp b/Source/core/animation/css/CSSAnimations.cpp
|
| index bc59b4374015752c704beb104242b344db6afbb2..26066096be89917cd4fd9f7f311ab91c4f19f5cd 100644
|
| --- a/Source/core/animation/css/CSSAnimations.cpp
|
| +++ b/Source/core/animation/css/CSSAnimations.cpp
|
| @@ -89,14 +89,14 @@ static PassRefPtrWillBeRawPtr<StringKeyframeEffectModel> createKeyframeEffectMod
|
| CSSPropertyID property = properties.propertyAt(j).id();
|
| specifiedPropertiesForUseCounter.add(property);
|
| if (property == CSSPropertyAnimationTimingFunction) {
|
| - CSSValue* value = properties.propertyAt(j).value();
|
| + CSSValue value = properties.propertyAt(j).value();
|
| RefPtr<TimingFunction> timingFunction;
|
| - if (value->isInheritedValue() && parentStyle->animations()) {
|
| + if (value.isInheritedValue() && parentStyle->animations()) {
|
| timingFunction = parentStyle->animations()->timingFunctionList()[0];
|
| - } else if (value->isValueList()) {
|
| - timingFunction = CSSToStyleMap::mapAnimationTimingFunction(toCSSValueList(value)->item(0));
|
| + } else if (value.isValueList()) {
|
| + timingFunction = CSSToStyleMap::mapAnimationTimingFunction(toCSSValueList(value).item(0));
|
| } else {
|
| - ASSERT(value->isCSSWideKeyword());
|
| + ASSERT(value.isCSSWideKeyword());
|
| timingFunction = CSSTimingData::initialTimingFunction();
|
| }
|
| keyframe->setEasing(timingFunction.release());
|
|
|