| Index: third_party/WebKit/Source/core/css/CSSFunctionValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFunctionValue.h b/third_party/WebKit/Source/core/css/CSSFunctionValue.h
|
| index a99f787019119e97dd364404d70678ae33bff38c..fbd01420130eab0bc237bb9cf36bb919791397cd 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFunctionValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSFunctionValue.h
|
| @@ -12,9 +12,9 @@ namespace blink {
|
|
|
| class CSSFunctionValue : public CSSValueList {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSValueID id)
|
| + static RawPtr<CSSFunctionValue> create(CSSValueID id)
|
| {
|
| - return adoptRefWillBeNoop(new CSSFunctionValue(id));
|
| + return new CSSFunctionValue(id);
|
| }
|
|
|
| String customCSSText() const;
|
|
|