Chromium Code Reviews| Index: third_party/WebKit/Source/core/style/ComputedStyle.h |
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h |
| index 5fcda23f6e5c1630ac1fab03817ed21f1bdbe3d9..101bc88452e6133e66bcf0c76c67c47b8fc00d45 100644 |
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
| @@ -369,9 +369,10 @@ public: |
| ContentDistributionType resolvedJustifyContentDistribution(const StyleContentAlignmentData& normalValueBehavior) const; |
| ContentPosition resolvedAlignContentPosition(const StyleContentAlignmentData& normalValueBehavior) const; |
| ContentDistributionType resolvedAlignContentDistribution(const StyleContentAlignmentData& normalValueBehavior) const; |
| - const StyleSelfAlignmentData resolvedAlignment(const ComputedStyle& parentStyle, ItemPosition resolvedAutoPositionForLayoutObject) const; |
| - static ItemPosition resolveAlignment(const ComputedStyle& parentStyle, const ComputedStyle& childStyle, ItemPosition resolvedAutoPositionForLayoutObject); |
| - static ItemPosition resolveJustification(const ComputedStyle& parentStyle, const ComputedStyle& childStyle, ItemPosition resolvedAutoPositionForLayoutObject); |
| + StyleSelfAlignmentData resolvedAlignItems(ItemPosition normalValueBehaviour) const; |
| + StyleSelfAlignmentData resolvedAlignSelf(ItemPosition normalValueBehaviour, const ComputedStyle* parentStyle = nullptr) const; |
|
Timothy Loh
2016/06/29 02:00:32
Can you add a TODO here to remove the parentStyle
jfernandez
2016/06/29 19:55:47
We can't, actually. the only way to deal with Anon
|
| + StyleSelfAlignmentData resolvedJustifyItems(ItemPosition normalValueBehaviour) const; |
| + StyleSelfAlignmentData resolvedJustifySelf(ItemPosition normalValueBehaviour, const ComputedStyle* parentStyle = nullptr) const; |
| StyleDifference visualInvalidationDiff(const ComputedStyle&) const; |
| @@ -1732,7 +1733,8 @@ public: |
| static float initialFlexShrink() { return 1; } |
| static Length initialFlexBasis() { return Length(Auto); } |
| static int initialOrder() { return 0; } |
| - static StyleContentAlignmentData initialContentAlignment() { return StyleContentAlignmentData(ContentPositionNormal, ContentDistributionDefault, OverflowAlignmentDefault); } |
| + static StyleContentAlignmentData initialContentAlignment() { return StyleContentAlignmentData(RuntimeEnabledFeatures::cssGridLayoutEnabled() ? ContentPositionNormal : ContentPositionFlexStart, ContentDistributionDefault, OverflowAlignmentDefault); } |
| + static StyleSelfAlignmentData initialDefaultAlignment() { return StyleSelfAlignmentData(RuntimeEnabledFeatures::cssGridLayoutEnabled() ? ItemPositionNormal : ItemPositionStretch, OverflowAlignmentDefault); } |
| static StyleSelfAlignmentData initialSelfAlignment() { return StyleSelfAlignmentData(ItemPositionAuto, OverflowAlignmentDefault); } |
| static EFlexDirection initialFlexDirection() { return FlowRow; } |
| static EFlexWrap initialFlexWrap() { return FlexNoWrap; } |