| Index: Source/core/css/CSSFontFeatureValue.h
 | 
| diff --git a/Source/core/css/CSSFontFeatureValue.h b/Source/core/css/CSSFontFeatureValue.h
 | 
| index 719cab61ab4aea789b5ac7e30eb7e28cb3667d11..3dacd5bf371396f217319f7e6955a848a0c5224f 100644
 | 
| --- a/Source/core/css/CSSFontFeatureValue.h
 | 
| +++ b/Source/core/css/CSSFontFeatureValue.h
 | 
| @@ -33,9 +33,9 @@ namespace blink {
 | 
|  
 | 
|  class CSSFontFeatureValue : public CSSValue {
 | 
|  public:
 | 
| -    static PassRefPtrWillBeRawPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
 | 
| +    static PassRefPtr<CSSFontFeatureValue> create(const AtomicString& tag, int value)
 | 
|      {
 | 
| -        return adoptRefWillBeNoop(new CSSFontFeatureValue(tag, value));
 | 
| +        return adoptRef(new CSSFontFeatureValue(tag, value));
 | 
|      }
 | 
|  
 | 
|      const AtomicString& tag() const { return m_tag; }
 | 
| @@ -44,8 +44,6 @@ public:
 | 
|  
 | 
|      bool equals(const CSSFontFeatureValue&) const;
 | 
|  
 | 
| -    DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
 | 
| -
 | 
|  private:
 | 
|      CSSFontFeatureValue(const AtomicString& tag, int value);
 | 
|  
 | 
| 
 |