| Index: sky/engine/core/css/resolver/StyleResolver.h
|
| diff --git a/sky/engine/core/css/resolver/StyleResolver.h b/sky/engine/core/css/resolver/StyleResolver.h
|
| index c74cb114eaf9ee6ac6f58337c2ba985dcf047f7f..a1c25803f42736d37d97b5240b4c0853396c06a9 100644
|
| --- a/sky/engine/core/css/resolver/StyleResolver.h
|
| +++ b/sky/engine/core/css/resolver/StyleResolver.h
|
| @@ -33,7 +33,6 @@
|
|
|
| namespace blink {
|
|
|
| -class AnimatableValue;
|
| class CSSValue;
|
| class Document;
|
| class Element;
|
| @@ -66,9 +65,6 @@ public:
|
|
|
| PassRefPtr<RenderStyle> styleForElement(Element*, RenderStyle* parentStyle = 0);
|
|
|
| - static PassRefPtr<AnimatableValue> createAnimatableValueSnapshot(Element&, CSSPropertyID, CSSValue&);
|
| - static PassRefPtr<AnimatableValue> createAnimatableValueSnapshot(StyleResolverState&, CSSPropertyID, CSSValue&);
|
| -
|
| PassRefPtr<RenderStyle> defaultStyleForElement();
|
| PassRefPtr<RenderStyle> styleForText(Text*);
|
|
|
| @@ -101,7 +97,6 @@ private:
|
| void matchRules(Element&, ElementRuleCollector&);
|
|
|
| void applyMatchedProperties(StyleResolverState&, const MatchResult&);
|
| - bool applyAnimatedProperties(StyleResolverState&, Element* animatingElement);
|
|
|
| enum StyleApplicationPass {
|
| HighPriorityProperties,
|
| @@ -117,8 +112,6 @@ private:
|
| void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool inheritedOnly);
|
| template <StyleApplicationPass pass>
|
| void applyProperties(StyleResolverState&, const StylePropertySet* properties, bool inheritedOnly);
|
| - template <StyleApplicationPass pass>
|
| - void applyAnimatedProperties(StyleResolverState&, const HashMap<CSSPropertyID, RefPtr<Interpolation> >&);
|
|
|
| MatchedPropertiesCache m_matchedPropertiesCache;
|
|
|
|
|