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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_physical_fragment.h

Issue 2546353002: Move oof-descendants to NGPhysicalFragmentBase (Closed)
Patch Set: fix win build problem Created 4 years 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
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_;
};

Powered by Google App Engine
This is Rietveld 408576698