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

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

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/StyleGridItemData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleGridItemData.cpp
diff --git a/Source/core/rendering/style/StyleGridItemData.cpp b/Source/core/rendering/style/StyleGridItemData.cpp
index ea938043375c93126c16abc41091ab87c692c64f..3dd830d38600dbd1f5f26155734f8937bed1db6e 100644
--- a/Source/core/rendering/style/StyleGridItemData.cpp
+++ b/Source/core/rendering/style/StyleGridItemData.cpp
@@ -35,19 +35,19 @@
namespace WebCore {
StyleGridItemData::StyleGridItemData()
- : m_gridStart(RenderStyle::initialGridStart())
- , m_gridEnd(RenderStyle::initialGridEnd())
- , m_gridBefore(RenderStyle::initialGridBefore())
- , m_gridAfter(RenderStyle::initialGridAfter())
+ : m_gridColumnStart(RenderStyle::initialGridColumnStart())
+ , m_gridColumnEnd(RenderStyle::initialGridColumnEnd())
+ , m_gridRowStart(RenderStyle::initialGridRowStart())
+ , m_gridRowEnd(RenderStyle::initialGridRowEnd())
{
}
StyleGridItemData::StyleGridItemData(const StyleGridItemData& o)
: RefCounted<StyleGridItemData>()
- , m_gridStart(o.m_gridStart)
- , m_gridEnd(o.m_gridEnd)
- , m_gridBefore(o.m_gridBefore)
- , m_gridAfter(o.m_gridAfter)
+ , m_gridColumnStart(o.m_gridColumnStart)
+ , m_gridColumnEnd(o.m_gridColumnEnd)
+ , m_gridRowStart(o.m_gridRowStart)
+ , m_gridRowEnd(o.m_gridRowEnd)
{
}
« no previous file with comments | « Source/core/rendering/style/StyleGridItemData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698