| Index: third_party/WebKit/Source/core/css/CSSFontFamilyValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSFontFamilyValue.h b/third_party/WebKit/Source/core/css/CSSFontFamilyValue.h
|
| index 646d424a2db57e9b04b9d177509e218b50a07892..4c4286c8487df40a69a873ce3c1186bd826f93b0 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSFontFamilyValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSFontFamilyValue.h
|
| @@ -13,9 +13,9 @@ namespace blink {
|
|
|
| class CSSFontFamilyValue : public CSSValue {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSFontFamilyValue> create(const String& str)
|
| + static RawPtr<CSSFontFamilyValue> create(const String& str)
|
| {
|
| - return adoptRefWillBeNoop(new CSSFontFamilyValue(str));
|
| + return new CSSFontFamilyValue(str);
|
| }
|
|
|
| String value() const { return m_string; }
|
|
|