Chromium Code Reviews| 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..393136160c0ee1f4a637e1154c29068aae86eb0a 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). |
| @@ -46,16 +45,14 @@ class CORE_EXPORT NGInlineLayoutAlgorithm : public NGLayoutAlgorithm { |
| const ComputedStyle& Style() const { return *style_; } |
| bool LayoutCurrentChild(); |
|
ikilpatrick
2017/01/23 23:21:36
can you remove this? i forgot to in an earlier pat
atotic
2017/01/23 23:31:21
done
|
| - NGConstraintSpace* CreateConstraintSpaceForCurrentChild() const; |
| + NGConstraintSpace* CreateConstraintSpaceForCurrentChild( |
|
ikilpatrick
2017/01/23 23:21:36
can you rename this to:
CreateConstraintSpaceForCh
atotic
2017/01/23 23:31:21
done
|
| + const NGInlineNode& current_child) 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 |