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

Unified Diff: third_party/WebKit/Source/core/style/GridPosition.h

Issue 1424913009: [css-grid] Simplify the interface of GridResolvedPosition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing v2 Created 5 years, 1 month 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/style/GridPosition.h
diff --git a/third_party/WebKit/Source/core/style/GridPosition.h b/third_party/WebKit/Source/core/style/GridPosition.h
index 2ec1653abbb4128a4af1d27832ef47d9c896014f..5ad26c0c4bfa301644967a2118ced41324ab2f9d 100644
--- a/third_party/WebKit/Source/core/style/GridPosition.h
+++ b/third_party/WebKit/Source/core/style/GridPosition.h
@@ -43,6 +43,13 @@ enum GridPositionType {
NamedGridAreaPosition // <ident>
};
+enum GridPositionSide {
+ ColumnStartSide,
+ ColumnEndSide,
+ RowStartSide,
+ RowEndSide
+};
+
class GridPosition {
DISALLOW_NEW();
public:

Powered by Google App Engine
This is Rietveld 408576698