Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h

Issue 1813053004: Move grid-auto-column/grid-auto-row into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up a bit more Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7abc6ca2466d2b60e9700b1ae8e891f6280c2e9c..46dfcf07797b90f1060664a9ffb7f1fa063a2ccb 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
@@ -43,6 +43,8 @@ class CSSValue;
class CSSValueList;
class StylePropertyShorthand;
+enum TrackSizeRestriction { FixedSizeOnly, AllowAll };
Timothy Loh 2016/03/22 06:33:59 TODO to move to cpp file once legacy parser is rem
rwlbuis 2016/03/22 20:48:12 Done.
+
// Inputs: PropertyID, isImportant bool, CSSParserValueList.
// Outputs: Vector of CSSProperties
@@ -112,7 +114,6 @@ private:
bool consumeColumns(bool important);
- enum TrackSizeRestriction { FixedSizeOnly, AllowAll };
bool consumeGridItemPositionShorthand(CSSPropertyID, bool important);
PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateColumns(bool important);
bool parseGridTemplateRowsAndAreasAndColumns(bool important);

Powered by Google App Engine
This is Rietveld 408576698