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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleGridData.h

Issue 2166393002: [css-grid] grid-auto-flow|row should take a <track-size>+ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing v2 Created 4 years, 5 months 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All Rights Reserved. 2 * Copyright (C) 2011 Google Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 OrderedNamedGridLines m_orderedNamedGridColumnLines; 76 OrderedNamedGridLines m_orderedNamedGridColumnLines;
77 OrderedNamedGridLines m_orderedNamedGridRowLines; 77 OrderedNamedGridLines m_orderedNamedGridRowLines;
78 78
79 NamedGridLinesMap m_autoRepeatNamedGridColumnLines; 79 NamedGridLinesMap m_autoRepeatNamedGridColumnLines;
80 NamedGridLinesMap m_autoRepeatNamedGridRowLines; 80 NamedGridLinesMap m_autoRepeatNamedGridRowLines;
81 OrderedNamedGridLines m_autoRepeatOrderedNamedGridColumnLines; 81 OrderedNamedGridLines m_autoRepeatOrderedNamedGridColumnLines;
82 OrderedNamedGridLines m_autoRepeatOrderedNamedGridRowLines; 82 OrderedNamedGridLines m_autoRepeatOrderedNamedGridRowLines;
83 83
84 unsigned m_gridAutoFlow : GridAutoFlowBits; 84 unsigned m_gridAutoFlow : GridAutoFlowBits;
85 85
86 GridTrackSize m_gridAutoRows; 86 Vector<GridTrackSize> m_gridAutoRows;
87 GridTrackSize m_gridAutoColumns; 87 Vector<GridTrackSize> m_gridAutoColumns;
88 88
89 NamedGridAreaMap m_namedGridArea; 89 NamedGridAreaMap m_namedGridArea;
90 // Because m_namedGridArea doesn't store the unnamed grid areas, we need to keep track 90 // Because m_namedGridArea doesn't store the unnamed grid areas, we need to keep track
91 // of the explicit grid size defined by both named and unnamed grid areas. 91 // of the explicit grid size defined by both named and unnamed grid areas.
92 size_t m_namedGridAreaRowCount; 92 size_t m_namedGridAreaRowCount;
93 size_t m_namedGridAreaColumnCount; 93 size_t m_namedGridAreaColumnCount;
94 94
95 Length m_gridColumnGap; 95 Length m_gridColumnGap;
96 Length m_gridRowGap; 96 Length m_gridRowGap;
97 97
98 Vector<GridTrackSize> m_gridAutoRepeatColumns; 98 Vector<GridTrackSize> m_gridAutoRepeatColumns;
99 Vector<GridTrackSize> m_gridAutoRepeatRows; 99 Vector<GridTrackSize> m_gridAutoRepeatRows;
100 100
101 size_t m_autoRepeatColumnsInsertionPoint; 101 size_t m_autoRepeatColumnsInsertionPoint;
102 size_t m_autoRepeatRowsInsertionPoint; 102 size_t m_autoRepeatRowsInsertionPoint;
103 103
104 AutoRepeatType m_autoRepeatColumnsType; 104 AutoRepeatType m_autoRepeatColumnsType;
105 AutoRepeatType m_autoRepeatRowsType; 105 AutoRepeatType m_autoRepeatRowsType;
106 private: 106 private:
107 StyleGridData(); 107 StyleGridData();
108 StyleGridData(const StyleGridData&); 108 StyleGridData(const StyleGridData&);
109 }; 109 };
110 110
111 } // namespace blink 111 } // namespace blink
112 112
113 #endif // StyleGridData_h 113 #endif // StyleGridData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698