| Index: Source/core/css/CSSKeyframeRule.h
|
| diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h
|
| index 48f1bfaf0a572d497b396d331974a0589740c7e6..cc70186bda85b67f624d2c2417e7244ba4dcf5a9 100644
|
| --- a/Source/core/css/CSSKeyframeRule.h
|
| +++ b/Source/core/css/CSSKeyframeRule.h
|
| @@ -57,18 +57,18 @@ public:
|
|
|
| const StylePropertySet& properties() const { return *m_properties; }
|
| MutableStylePropertySet& mutableProperties();
|
| - void setProperties(PassRefPtr<StylePropertySet>);
|
| + void setProperties(PassRefPtrWillBeRawPtr<StylePropertySet>);
|
|
|
| String cssText() const;
|
|
|
| - void trace(Visitor*) { }
|
| + void trace(Visitor*);
|
|
|
| static PassOwnPtr<Vector<double> > createKeyList(CSSParserValueList*);
|
|
|
| private:
|
| StyleKeyframe();
|
|
|
| - RefPtr<StylePropertySet> m_properties;
|
| + RefPtrWillBeMember<StylePropertySet> m_properties;
|
| // These are both calculated lazily. Either one can be set, which invalidates the other.
|
| mutable String m_keyText;
|
| mutable OwnPtr<Vector<double> > m_keys;
|
|
|