Index: Source/core/css/parser/CSSParserFastPaths.h |
diff --git a/Source/core/css/parser/CSSParserFastPaths.h b/Source/core/css/parser/CSSParserFastPaths.h |
index 7ae1018cd2fd1532cead577a0f8a4d6c9718fe09..265591a0701d9821799fd172f14a1d895f546b7d 100644 |
--- a/Source/core/css/parser/CSSParserFastPaths.h |
+++ b/Source/core/css/parser/CSSParserFastPaths.h |
@@ -21,13 +21,13 @@ class CSSParserFastPaths { |
public: |
// Parses simple values like '10px' or 'green', but makes no guarantees |
// about handling any property completely. |
- static PassRefPtrWillBeRawPtr<CSSValue> maybeParseValue(CSSPropertyID, const String&, CSSParserMode); |
+ static PassRefPtr<CSSValue> maybeParseValue(CSSPropertyID, const String&, CSSParserMode); |
// Properties handled here shouldn't be explicitly handled in CSSPropertyParser |
static bool isKeywordPropertyID(CSSPropertyID); |
static bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID); |
- static PassRefPtrWillBeRawPtr<CSSValue> parseColor(const String&, CSSParserMode); |
+ static PassRefPtr<CSSValue> parseColor(const String&, CSSParserMode); |
}; |
} // namespace blink |