| Index: Source/core/css/ComputedStyleCSSValueMapping.h
 | 
| diff --git a/Source/core/css/ComputedStyleCSSValueMapping.h b/Source/core/css/ComputedStyleCSSValueMapping.h
 | 
| index 4de732d9a42ec9ea78a753466fede58c2e35e629..d4c39e129e0ccfcbc65fd4d27fc3ad6ccb093028 100644
 | 
| --- a/Source/core/css/ComputedStyleCSSValueMapping.h
 | 
| +++ b/Source/core/css/ComputedStyleCSSValueMapping.h
 | 
| @@ -23,13 +23,13 @@ class ComputedStyleCSSValueMapping {
 | 
|      STATIC_ONLY(ComputedStyleCSSValueMapping);
 | 
|  public:
 | 
|      // FIXME: Resolve computed auto alignment in applyProperty/ComputedStyle and remove this non-const styledNode parameter.
 | 
| -    static PassRefPtrWillBeRawPtr<CSSValue> get(CSSPropertyID, const ComputedStyle&, const LayoutObject* = nullptr, Node* styledNode = nullptr, bool allowVisitedStyle = false);
 | 
| +    static PassRefPtr<CSSValue> get(CSSPropertyID, const ComputedStyle&, const LayoutObject* = nullptr, Node* styledNode = nullptr, bool allowVisitedStyle = false);
 | 
|  private:
 | 
| -    static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(const ComputedStyle&, const StyleColor&);
 | 
| -    static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowData(const ShadowData&, const ComputedStyle&, bool useSpread);
 | 
| -    static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowList(const ShadowList*, const ComputedStyle&, bool useSpread);
 | 
| -    static PassRefPtrWillBeRawPtr<CSSValue> valueForFilter(const ComputedStyle&);
 | 
| -    static PassRefPtrWillBeRawPtr<CSSValue> valueForFont(const ComputedStyle&);
 | 
| +    static PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const ComputedStyle&, const StyleColor&);
 | 
| +    static PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const ComputedStyle&, bool useSpread);
 | 
| +    static PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const ComputedStyle&, bool useSpread);
 | 
| +    static PassRefPtr<CSSValue> valueForFilter(const ComputedStyle&);
 | 
| +    static PassRefPtr<CSSValue> valueForFont(const ComputedStyle&);
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |