| Index: Source/core/css/parser/CSSPropertyParser.h
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.h b/Source/core/css/parser/CSSPropertyParser.h
|
| index f7c9962acd2b28c5d6dd68800653f723eb9cde8d..08ae7ae6cd75f3afc9ea63e8bdae356e81ddfafa 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.h
|
| +++ b/Source/core/css/parser/CSSPropertyParser.h
|
| @@ -200,10 +200,9 @@ private:
|
|
|
| PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseLineHeight();
|
| bool parseFontSize(bool important);
|
| - bool parseFontVariant(bool important);
|
| + PassRefPtrWillBeRawPtr<CSSValue> consumeFontVariant();
|
| bool parseFontWeight(bool important);
|
| - PassRefPtrWillBeRawPtr<CSSValueList> parseFontFaceSrc();
|
| - PassRefPtrWillBeRawPtr<CSSValueList> parseFontFaceUnicodeRange();
|
| + PassRefPtrWillBeRawPtr<CSSValueList> consumeFontFaceSrc();
|
|
|
| bool parseSVGValue(CSSPropertyID propId, bool important);
|
| PassRefPtrWillBeRawPtr<CSSValue> parseSVGStrokeDasharray();
|
| @@ -262,11 +261,6 @@ private:
|
|
|
| bool parseCalculation(CSSParserValue*, ValueRange);
|
|
|
| - bool parseFontFeatureTag(CSSValueList*);
|
| - PassRefPtrWillBeRawPtr<CSSValue> parseFontFeatureSettings();
|
| -
|
| - bool parseFontVariantLigatures(bool important);
|
| -
|
| bool parseGeneratedImage(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&);
|
|
|
| PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createPrimitiveNumericValue(CSSParserValue*);
|
| @@ -288,8 +282,8 @@ private:
|
| PassRefPtrWillBeRawPtr<CSSValueList> parseSize();
|
| SizeParameterType parseSizeParameter(CSSValueList* parsedValues, CSSParserValue*, SizeParameterType prevParamType);
|
|
|
| - bool parseFontFaceSrcURI(CSSValueList*);
|
| - bool parseFontFaceSrcLocal(CSSValueList*);
|
| + bool consumeFontFaceSrcURI(CSSValueList*);
|
| + bool consumeFontFaceSrcLocal(CSSValueList*);
|
|
|
| class ImplicitScope {
|
| STACK_ALLOCATED();
|
|
|