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

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

Issue 2722763002: [LayoutNG] Switch NGBreakToken to being RefCounted. (Closed)
Patch Set: remove comments. Created 3 years, 10 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 1a259c1a4eb918908490d737671f6e20b02007d0..4b03b6927c52e7f0d02e1605b35c53b8feb3d807 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
@@ -18,15 +18,14 @@ struct NGFloatingObject;
class CORE_EXPORT NGPhysicalBoxFragment final : public NGPhysicalFragment {
public:
// This modifies the passed-in children vector.
- NGPhysicalBoxFragment(
- LayoutObject* layout_object,
- NGPhysicalSize size,
- NGPhysicalSize overflow,
- Vector<RefPtr<NGPhysicalFragment>>& children,
- Vector<Persistent<NGFloatingObject>>& positioned_floats,
- const WTF::Optional<NGLogicalOffset>& bfc_offset,
- const NGMarginStrut& end_margin_strut,
- NGBreakToken* break_token = nullptr);
+ NGPhysicalBoxFragment(LayoutObject* layout_object,
+ NGPhysicalSize size,
+ NGPhysicalSize overflow,
+ Vector<RefPtr<NGPhysicalFragment>>& children,
+ Vector<Persistent<NGFloatingObject>>& positioned_floats,
+ const WTF::Optional<NGLogicalOffset>& bfc_offset,
+ const NGMarginStrut& end_margin_strut,
+ RefPtr<NGBreakToken> break_token = nullptr);
const Vector<RefPtr<NGPhysicalFragment>>& Children() const {
return children_;

Powered by Google App Engine
This is Rietveld 408576698