| Index: Source/core/css/resolver/StyleResolver.h
|
| diff --git a/Source/core/css/resolver/StyleResolver.h b/Source/core/css/resolver/StyleResolver.h
|
| index d12024e47b555c48d7ad449b10ea219f8dd2f198..af4ecb5e90541a307d47f2ab9f26cbb516af0e78 100644
|
| --- a/Source/core/css/resolver/StyleResolver.h
|
| +++ b/Source/core/css/resolver/StyleResolver.h
|
| @@ -213,7 +213,7 @@ public:
|
| // FIXME: Used by SharingStyleFinder, but should be removed.
|
| bool styleSharingCandidateMatchesRuleSet(const ElementResolveContext&, RenderStyle*, RuleSet*);
|
|
|
| - const StyleRuleKeyframes* matchScopedKeyframesRule(Element*, const AtomicStringImpl* animationName);
|
| + const StyleRuleKeyframes* matchScopedKeyframesRule(Element*, const StringImpl* animationName);
|
| PassRefPtr<RenderStyle> styleForKeyframe(Element*, const RenderStyle*, const StyleKeyframe*, KeyframeValue&);
|
|
|
| // These methods will give back the set of rules that matched for a given element (or a pseudo-element).
|
| @@ -309,7 +309,7 @@ private:
|
| DocumentRuleSets m_ruleSets;
|
|
|
| // FIXME: This likely belongs on RuleSet.
|
| - typedef HashMap<AtomicStringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRuleMap;
|
| + typedef HashMap<StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRuleMap;
|
| KeyframesRuleMap m_keyframesRuleMap;
|
|
|
| static RenderStyle* s_styleNotYetAvailable;
|
|
|