Index: Source/core/css/resolver/StyleResolver.cpp |
diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp |
index 6d60080be8a3c107d85f7b32629641ee371604f1..97ab8efd7a43c83c2d6bd0c0802656116e6d292f 100644 |
--- a/Source/core/css/resolver/StyleResolver.cpp |
+++ b/Source/core/css/resolver/StyleResolver.cpp |
@@ -695,14 +695,14 @@ PassRefPtr<ComputedStyle> StyleResolver::styleForKeyframe(Element& element, cons |
// This function is used by the WebAnimations JavaScript API method animate(). |
// FIXME: Remove this when animate() switches away from resolution-dependent parsing. |
-PassRefPtrWillBeRawPtr<AnimatableValue> StyleResolver::createAnimatableValueSnapshot(Element& element, const ComputedStyle* baseStyle, CSSPropertyID property, CSSValue* value) |
+AnimatableValue* StyleResolver::createAnimatableValueSnapshot(Element& element, const ComputedStyle* baseStyle, CSSPropertyID property, CSSValue* value) |
{ |
StyleResolverState state(element.document(), &element); |
state.setStyle(baseStyle ? ComputedStyle::clone(*baseStyle) : ComputedStyle::create()); |
return createAnimatableValueSnapshot(state, property, value); |
} |
-PassRefPtrWillBeRawPtr<AnimatableValue> StyleResolver::createAnimatableValueSnapshot(StyleResolverState& state, CSSPropertyID property, CSSValue* value) |
+AnimatableValue* StyleResolver::createAnimatableValueSnapshot(StyleResolverState& state, CSSPropertyID property, CSSValue* value) |
{ |
if (value) { |
StyleBuilder::applyProperty(property, state, value); |
@@ -1006,7 +1006,7 @@ StyleRuleKeyframes* StyleResolver::findKeyframesRule(const Element* element, con |
} |
template <CSSPropertyPriority priority> |
-void StyleResolver::applyAnimatedProperties(StyleResolverState& state, const WillBeHeapHashMap<PropertyHandle, RefPtrWillBeMember<Interpolation>>& activeInterpolations) |
+void StyleResolver::applyAnimatedProperties(StyleResolverState& state, const HeapHashMap<PropertyHandle, Member<Interpolation>>& activeInterpolations) |
{ |
for (const auto& interpolationEntry : activeInterpolations) { |
if (!interpolationEntry.key.isCSSProperty()) |