| Index: Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| diff --git a/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| index ff6f44735206e37aba162abd1ae8567df48a3b92..9c76183f482873e8aea62a18f1ae1b902cf96333 100644
|
| --- a/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| +++ b/Source/core/css/resolver/AnimatedStyleBuilder.cpp
|
| @@ -52,8 +52,8 @@
|
| #include "core/animation/animatable/AnimatableUnknown.h"
|
| #include "core/animation/animatable/AnimatableValue.h"
|
| #include "core/animation/animatable/AnimatableVisibility.h"
|
| -#include "core/animation/css/CSSAnimations.h"
|
| #include "core/css/CSSPrimitiveValueMappings.h"
|
| +#include "core/css/CSSPropertyMetadata.h"
|
| #include "core/css/resolver/StyleBuilder.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
| #include "core/rendering/style/RenderStyle.h"
|
| @@ -254,7 +254,7 @@ FontWeight animatableValueToFontWeight(const AnimatableValue* value)
|
| // FIXME: Generate this function.
|
| void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& state, const AnimatableValue* value)
|
| {
|
| - ASSERT(CSSAnimations::isAnimatableProperty(property));
|
| + ASSERT(CSSPropertyMetadata::isAnimatableProperty(property));
|
| if (value->isUnknown()) {
|
| StyleBuilder::applyProperty(property, state, toAnimatableUnknown(value)->toCSSValue().get());
|
| return;
|
|
|