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

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

Issue 2642823008: Introduce NGFloatingObject (Closed)
Patch Set: Update TestExpectations Created 3 years, 11 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
Index: third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.h
index 680135885fd86d02d4732f2f2ecca9faa9b03b67..2821cdf8fd42c01c3411260cd1f6115537bd23e4 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.h
@@ -13,6 +13,7 @@
namespace blink {
class NGBlockNode;
+struct NGFloatingObject;
class CORE_EXPORT NGPhysicalBoxFragment final : public NGPhysicalFragment {
public:
@@ -24,6 +25,8 @@ class CORE_EXPORT NGPhysicalBoxFragment final : public NGPhysicalFragment {
HeapLinkedHashSet<WeakMember<NGBlockNode>>& out_of_flow_descendants,
Vector<NGStaticPosition>& out_of_flow_positions,
NGMarginStrut margin_strut,
+ HeapVector<Member<NGFloatingObject>>& unpositioned_floats,
+ HeapVector<Member<NGFloatingObject>>& positioned_floats,
NGBreakToken* break_token = nullptr);
const HeapVector<Member<const NGPhysicalFragment>>& Children() const {

Powered by Google App Engine
This is Rietveld 408576698