#ifndef StyleGridData_h
#define StyleGridData_h
#include "core/rendering/style/GridCoordinate.h"
#include "core/rendering/style/GridTrackSize.h"
#include "core/rendering/style/RenderStyleConstants.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
typedef HashMap<String, Vector<size_t> > NamedGridLinesMap;
typedef HashMap<size_t, Vector<String>, WTF::IntHash<size_t>, WTF::UnsignedWithZeroKeyHashTraits<size_t> > OrderedNamedGridLines;
class StyleGridData : public RefCounted<StyleGridData> {
public:
static PassRefPtr<StyleGridData> create() { return adoptRef(new StyleGridData); }
PassRefPtr<StyleGridData> copy() const { return adoptRef(new StyleGridData(*this)); }
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;
}
bool operator!=(const StyleGridData& o) const
{
return !(*this == o);
}
Vector<GridTrackSize> m_gridTemplateColumns;
Vector<GridTrackSize> m_gridTemplateRows;
NamedGridLinesMap m_namedGridColumnLines;
NamedGridLinesMap m_namedGridRowLines;
OrderedNamedGridLines m_orderedNamedGridColumnLines;
OrderedNamedGridLines m_orderedNamedGridRowLines;
GridAutoFlow m_gridAutoFlow;
GridTrackSize m_gridAutoRows;
GridTrackSize m_gridAutoColumns;
NamedGridAreaMap m_namedGridArea;
size_t m_namedGridAreaRowCount;
size_t m_namedGridAreaColumnCount;
private:
StyleGridData();
StyleGridData(const StyleGridData&);
};
}
#endif