Index: Source/core/rendering/RenderGrid.h |
diff --git a/Source/core/rendering/RenderGrid.h b/Source/core/rendering/RenderGrid.h |
index cc761590fc5a11b359ae0e0a3d5d49d494b34e77..50b58c1703b5b176a833c7c666e653e6109f14ee 100644 |
--- a/Source/core/rendering/RenderGrid.h |
+++ b/Source/core/rendering/RenderGrid.h |
@@ -91,6 +91,7 @@ private: |
TrackSizingDirection autoPlacementMinorAxisDirection() const; |
void layoutGridItems(); |
+ void populateGridPositions(const Vector<GridTrack>& columnTracks, const Vector<GridTrack>& rowTracks); |
virtual bool supportsPartialLayout() const OVERRIDE { return false; } |
@@ -148,6 +149,8 @@ private: |
typedef Vector<Vector<GridCell> > GridRepresentation; |
GridRepresentation m_grid; |
bool m_gridIsDirty; |
+ Vector<LayoutUnit> m_rowPositions; |
+ Vector<LayoutUnit> m_columnPositions; |
HashMap<const RenderBox*, GridCoordinate> m_gridItemCoordinate; |
OrderIterator m_orderIterator; |
}; |