| Index: third_party/WebKit/Source/core/css/CSSRuleList.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSRuleList.h b/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| index 50e54660075516832bde922e25ec393fd60fba78..e22ee18ac85bc89c4191eec714e2f2592dfe21d3 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSRuleList.h
|
| @@ -57,7 +57,7 @@ protected:
|
|
|
| class StaticCSSRuleList final : public CSSRuleList {
|
| public:
|
| - static RawPtr<StaticCSSRuleList> create()
|
| + static StaticCSSRuleList* create()
|
| {
|
| return new StaticCSSRuleList();
|
| }
|
| @@ -89,7 +89,7 @@ private:
|
| template <class Rule>
|
| class LiveCSSRuleList final : public CSSRuleList {
|
| public:
|
| - static RawPtr<LiveCSSRuleList> create(Rule* rule)
|
| + static LiveCSSRuleList* create(Rule* rule)
|
| {
|
| return new LiveCSSRuleList(rule);
|
| }
|
|
|