| Index: third_party/WebKit/Source/core/style/StyleGridData.h
|
| diff --git a/third_party/WebKit/Source/core/style/StyleGridData.h b/third_party/WebKit/Source/core/style/StyleGridData.h
|
| index 37f6c534cc3db3c9552ff48c0e29a0c28d7c1d6d..2c8ea7054397f08e3bf19aa1f13797bfa4022415 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleGridData.h
|
| +++ b/third_party/WebKit/Source/core/style/StyleGridData.h
|
| @@ -46,7 +46,13 @@ public:
|
|
|
| bool operator==(const StyleGridData& o) const
|
| {
|
| - return m_gridTemplateColumns == o.m_gridTemplateColumns && m_gridTemplateRows == o.m_gridTemplateRows && m_gridAutoFlow == o.m_gridAutoFlow && m_gridAutoRows == o.m_gridAutoRows && m_gridAutoColumns == o.m_gridAutoColumns && m_namedGridColumnLines == o.m_namedGridColumnLines && m_namedGridRowLines == o.m_namedGridRowLines && m_orderedNamedGridColumnLines == o.m_orderedNamedGridColumnLines && m_orderedNamedGridRowLines == o.m_orderedNamedGridRowLines && m_namedGridArea == o.m_namedGridArea && m_namedGridArea == o.m_namedGridArea && m_namedGridAreaRowCount == o.m_namedGridAreaRowCount && m_namedGridAreaColumnCount == o.m_namedGridAreaColumnCount;
|
| + return m_gridTemplateColumns == o.m_gridTemplateColumns && m_gridTemplateRows == o.m_gridTemplateRows
|
| + && m_gridAutoFlow == o.m_gridAutoFlow && m_gridAutoRows == o.m_gridAutoRows && m_gridAutoColumns == o.m_gridAutoColumns
|
| + && m_namedGridColumnLines == o.m_namedGridColumnLines && m_namedGridRowLines == o.m_namedGridRowLines
|
| + && m_orderedNamedGridColumnLines == o.m_orderedNamedGridColumnLines && m_orderedNamedGridRowLines == o.m_orderedNamedGridRowLines
|
| + && m_namedGridArea == o.m_namedGridArea && m_namedGridArea == o.m_namedGridArea
|
| + && m_namedGridAreaRowCount == o.m_namedGridAreaRowCount && m_namedGridAreaColumnCount == o.m_namedGridAreaColumnCount
|
| + && m_gridColumnGap == o.m_gridColumnGap && m_gridRowGap == o.m_gridRowGap;
|
| }
|
|
|
| bool operator!=(const StyleGridData& o) const
|
| @@ -76,6 +82,9 @@ public:
|
| size_t m_namedGridAreaRowCount;
|
| size_t m_namedGridAreaColumnCount;
|
|
|
| + Length m_gridColumnGap;
|
| + Length m_gridRowGap;
|
| +
|
| private:
|
| StyleGridData();
|
| StyleGridData(const StyleGridData&);
|
|
|