| Index: third_party/WebKit/Source/core/layout/ng/ng_inline_layout_algorithm.h
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_layout_algorithm.h b/third_party/WebKit/Source/core/layout/ng/ng_inline_layout_algorithm.h
|
| index 8ec623c86e0645143da9639430d1f8083e914837..760531ea58564b3a012cba8c73a1e7309744b29d 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_inline_layout_algorithm.h
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_layout_algorithm.h
|
| @@ -16,7 +16,6 @@ class NGBreakToken;
|
| class NGConstraintSpace;
|
| class NGFragmentBuilder;
|
| class NGInlineNode;
|
| -class NGLineBuilder;
|
|
|
| // A class for inline layout (e.g. a anonymous block with inline-level children
|
| // only).
|
| @@ -45,17 +44,13 @@ class CORE_EXPORT NGInlineLayoutAlgorithm : public NGLayoutAlgorithm {
|
| // Read-only Getters.
|
| const ComputedStyle& Style() const { return *style_; }
|
|
|
| - bool LayoutCurrentChild();
|
| - NGConstraintSpace* CreateConstraintSpaceForCurrentChild() const;
|
| + NGConstraintSpace* CreateConstraintSpaceForChild(const NGInlineNode&) const;
|
|
|
| RefPtr<const ComputedStyle> style_;
|
| Member<NGInlineNode> first_child_;
|
| Member<NGConstraintSpace> constraint_space_;
|
| Member<NGBreakToken> break_token_;
|
| Member<NGFragmentBuilder> builder_;
|
| - Member<NGConstraintSpace> space_for_current_child_;
|
| - Member<NGInlineNode> current_child_;
|
| - Member<NGLineBuilder> line_builder_;
|
| };
|
|
|
| } // namespace blink
|
|
|