Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h |
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h |
| index de0a662ad5477d040af68dd3d1535dddb176f4b1..e1bc962ce5fcdc54aa3e3f3975f7a997ae653f63 100644 |
| --- a/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h |
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h |
| @@ -22,7 +22,7 @@ class CORE_EXPORT NGPhysicalFragment final : public NGPhysicalFragmentBase { |
| NGPhysicalSize overflow, |
| HeapVector<Member<const NGPhysicalFragmentBase>>& children, |
| HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants, |
| - Vector<NGLogicalOffset> out_of_flow_offsets, |
| + Vector<NGStaticPosition> out_of_flow_positions, |
|
ikilpatrick
2016/12/02 22:23:43
this should be a Vector<NGStaticPosition>& out_of_
atotic
2016/12/02 23:08:44
done
|
| NGMarginStrut margin_strut); |
| const HeapVector<Member<const NGPhysicalFragmentBase>>& Children() const { |
| @@ -34,8 +34,8 @@ class CORE_EXPORT NGPhysicalFragment final : public NGPhysicalFragmentBase { |
| return out_of_flow_descendants_; |
| } |
| - const Vector<NGLogicalOffset>& OutOfFlowOffsets() const { |
| - return out_of_flow_offsets_; |
| + const Vector<NGStaticPosition>& OutOfFlowPositions() const { |
| + return out_of_flow_positions_; |
| } |
| NGMarginStrut MarginStrut() const { return margin_strut_; } |
| @@ -45,7 +45,7 @@ class CORE_EXPORT NGPhysicalFragment final : public NGPhysicalFragmentBase { |
| private: |
| HeapVector<Member<const NGPhysicalFragmentBase>> children_; |
| HeapLinkedHashSet<WeakMember<NGBlockNode>> out_of_flow_descendants_; |
| - Vector<NGLogicalOffset> out_of_flow_offsets_; |
| + Vector<NGStaticPosition> out_of_flow_positions_; |
| NGMarginStrut margin_strut_; |
| }; |