| Index: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
|
| index 1b69f93500b5df72c51ae7ab41f5be7d5f394974..f8074d79879f73f4b3820f6ab93f3d421f018efd 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
|
| @@ -23,9 +23,9 @@ namespace blink {
|
| // allows us to keep the parsing algorithm almost intact.
|
| class CSSGridAutoRepeatValue : public CSSValueList {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSGridAutoRepeatValue> create(CSSValueID id)
|
| + static RawPtr<CSSGridAutoRepeatValue> create(CSSValueID id)
|
| {
|
| - return adoptRefWillBeNoop(new CSSGridAutoRepeatValue(id));
|
| + return new CSSGridAutoRepeatValue(id);
|
| }
|
|
|
| String customCSSText() const;
|
|
|