Index: Source/core/css/resolver/AnimatedStyleBuilder.cpp |
diff --git a/Source/core/css/resolver/AnimatedStyleBuilder.cpp b/Source/core/css/resolver/AnimatedStyleBuilder.cpp |
index d810f0bf0832edb452b78a5b8e6986bf369fbb45..3b1d2de957f94f3a4a3ca9935bde7796a40214ed 100644 |
--- a/Source/core/css/resolver/AnimatedStyleBuilder.cpp |
+++ b/Source/core/css/resolver/AnimatedStyleBuilder.cpp |
@@ -149,7 +149,7 @@ void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, StyleResolv |
if (value->isLengthSize()) |
fillLayer->setSize(FillSize(SizeLength, animatableValueToLengthSize(value, state, ValueRangeNonNegative))); |
else |
- CSSToStyleMap::mapFillSize(state, fillLayer, toAnimatableUnknown(value)->toCSSValue().get()); |
+ CSSToStyleMap::mapFillSize(state, fillLayer, toAnimatableUnknown(value)->toCSSValue()); |
} |
template <CSSPropertyID property> |
@@ -270,7 +270,7 @@ void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverSt |
{ |
ASSERT(CSSPropertyMetadata::isAnimatableProperty(property)); |
if (value->isUnknown()) { |
- StyleBuilder::applyProperty(property, state, toAnimatableUnknown(value)->toCSSValue().get()); |
+ StyleBuilder::applyProperty(property, state, toAnimatableUnknown(value)->toCSSValue()); |
return; |
} |
ComputedStyle* style = state.style(); |