Chromium Code Reviews| Index: Source/core/css/parser/BisonCSSParser.h |
| diff --git a/Source/core/css/parser/BisonCSSParser.h b/Source/core/css/parser/BisonCSSParser.h |
| index 2982ab5eec300315c1754ff07adadb449b9f0e76..8c3fc0f7d74fce46eef5fe6c8a31b1284cc2019a 100644 |
| --- a/Source/core/css/parser/BisonCSSParser.h |
| +++ b/Source/core/css/parser/BisonCSSParser.h |
| @@ -91,9 +91,9 @@ public: |
| static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*); |
| static bool parseColor(RGBA32& color, const String&, bool strict = false); |
| static bool parseSystemColor(RGBA32& color, const String&, Document*); |
| - static PassRefPtrWillBeRawPtr<CSSValueList> parseFontFaceValue(const AtomicString&); |
| + static PassRefPtr<CSSValueList> parseFontFaceValue(const AtomicString&); |
|
dstockwell
2014/02/24 04:58:40
Appears this was not rebased correctly?
rjwright
2014/02/24 11:17:46
Done.
|
| static PassRefPtr<CSSValue> parseAnimationTimingFunctionValue(const String&); |
| - PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseValidPrimitive(CSSValueID ident, CSSParserValue*); |
| + PassRefPtr<CSSPrimitiveValue> parseValidPrimitive(CSSValueID ident, CSSParserValue*); |
| bool parseDeclaration(MutableStylePropertySet*, const String&, CSSParserObserver*, StyleSheetContents* contextStyleSheet); |
| static PassRefPtr<ImmutableStylePropertySet> parseInlineStyleDeclaration(const String&, Element*); |
| PassRefPtr<MediaQuerySet> parseMediaQueryList(const String&); |