Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
index f54f0e482341531c29599106063c19e8b15896e2..8003b460cdcfbb5394cfb0bc3f4b71d681cc79bc 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h |
@@ -167,6 +167,7 @@ private: |
bool consumeColumns(bool important); |
+ enum TrackSizeRestriction { FixedSizeOnly, AllowAll }; |
PassRefPtrWillBeRawPtr<CSSValue> parseGridPosition(); |
bool parseIntegerOrCustomIdentFromGridPosition(RefPtrWillBeRawPtr<CSSPrimitiveValue>& numericValue, RefPtrWillBeRawPtr<CSSCustomIdentValue>& gridLineName); |
bool parseGridItemPositionShorthand(CSSPropertyID, bool important); |
@@ -177,9 +178,9 @@ private: |
bool parseGridGapShorthand(bool important); |
bool parseSingleGridAreaLonghand(RefPtrWillBeRawPtr<CSSValue>&); |
PassRefPtrWillBeRawPtr<CSSValue> parseGridTrackList(); |
- bool parseGridTrackRepeatFunction(CSSValueList&); |
- PassRefPtrWillBeRawPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList); |
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); |
+ bool parseGridTrackRepeatFunction(CSSValueList&, bool& isAutoRepeat); |
+ PassRefPtrWillBeRawPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList, TrackSizeRestriction = AllowAll); |
+ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*, TrackSizeRestriction = AllowAll); |
bool parseGridTemplateAreasRow(NamedGridAreaMap&, const size_t, size_t&); |
PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateAreas(); |
bool parseGridLineNames(CSSParserValueList&, CSSValueList&, CSSGridLineNamesValue* = nullptr); |