| Index: third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
|
| diff --git a/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h b/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
|
| index 40a37f84d7fdaff6a1475edb05df0af0237d0143..0a68c883e239ae8d825ed53ce433b98888c7a7b5 100644
|
| --- a/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
|
| +++ b/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
|
| @@ -14,7 +14,7 @@ class StylePropertySet;
|
|
|
| class StyleRuleKeyframe final : public StyleRuleBase {
|
| public:
|
| - static RawPtr<StyleRuleKeyframe> create(PassOwnPtr<Vector<double>> keys, RawPtr<StylePropertySet> properties)
|
| + static StyleRuleKeyframe* create(PassOwnPtr<Vector<double>> keys, StylePropertySet* properties)
|
| {
|
| return new StyleRuleKeyframe(keys, properties);
|
| }
|
| @@ -34,7 +34,7 @@ public:
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| - StyleRuleKeyframe(PassOwnPtr<Vector<double>>, RawPtr<StylePropertySet>);
|
| + StyleRuleKeyframe(PassOwnPtr<Vector<double>>, StylePropertySet*);
|
|
|
| Member<StylePropertySet> m_properties;
|
| Vector<double> m_keys;
|
|
|