Chromium Code Reviews| 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 |
| +}; |
| + |
|
Manuel Rego
2015/11/10 09:08:03
Why are you moving the enum it's mostly used in Gr
svillar
2015/11/10 10:56:37
Definitions do not belong to the place they're use
|
| class GridPosition { |
| DISALLOW_NEW(); |
| public: |