| 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 229a88a64075f43421699fb42910982fc61639aa..f4c5796f7bf2c51ea7860b1aaafb625fdfd0b89d 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
|
| @@ -29,23 +29,12 @@ class CORE_EXPORT NGPhysicalFragment final : public NGPhysicalFragmentBase {
|
| return children_;
|
| }
|
|
|
| - const HeapLinkedHashSet<WeakMember<NGBlockNode>>& OutOfFlowDescendants()
|
| - const {
|
| - return out_of_flow_descendants_;
|
| - }
|
| -
|
| - const Vector<NGStaticPosition>& OutOfFlowPositions() const {
|
| - return out_of_flow_positions_;
|
| - }
|
| -
|
| NGMarginStrut MarginStrut() const { return margin_strut_; }
|
|
|
| DECLARE_TRACE_AFTER_DISPATCH();
|
|
|
| private:
|
| HeapVector<Member<const NGPhysicalFragmentBase>> children_;
|
| - HeapLinkedHashSet<WeakMember<NGBlockNode>> out_of_flow_descendants_;
|
| - Vector<NGStaticPosition> out_of_flow_positions_;
|
| NGMarginStrut margin_strut_;
|
| };
|
|
|
|
|