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

Unified Diff: Source/core/rendering/style/StyleGridItemData.h

Issue 17601010: [CSS Grid Layout] Rename grid placement properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: missing webposed/ changes Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/StyleGridItemData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleGridItemData.h
diff --git a/Source/core/rendering/style/StyleGridItemData.h b/Source/core/rendering/style/StyleGridItemData.h
index d68ffd4e9009145d4bdee2376c267ffa55a00542..76214b52663ec4f046ff7c1f968be4d8cf08bf29 100644
--- a/Source/core/rendering/style/StyleGridItemData.h
+++ b/Source/core/rendering/style/StyleGridItemData.h
@@ -46,8 +46,8 @@ public:
bool operator==(const StyleGridItemData& o) const
{
- return m_gridStart == o.m_gridStart && m_gridEnd == o.m_gridEnd
- && m_gridBefore == o.m_gridBefore && m_gridAfter == o.m_gridAfter;
+ return m_gridColumnStart == o.m_gridColumnStart && m_gridColumnEnd == o.m_gridColumnEnd
+ && m_gridRowStart == o.m_gridRowStart && m_gridRowEnd == o.m_gridRowEnd;
}
bool operator!=(const StyleGridItemData& o) const
@@ -55,10 +55,10 @@ public:
return !(*this == o);
}
- GridPosition m_gridStart;
- GridPosition m_gridEnd;
- GridPosition m_gridBefore;
- GridPosition m_gridAfter;
+ GridPosition m_gridColumnStart;
+ GridPosition m_gridColumnEnd;
+ GridPosition m_gridRowStart;
+ GridPosition m_gridRowEnd;
private:
StyleGridItemData();
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/StyleGridItemData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698