Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.h |
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.h b/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.h |
| index ed282c8176d80d721885162ebee8947cc7259833..53112c0d9a15666f444ce2ccfac00ad45a933558 100644 |
| --- a/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.h |
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.h |
| @@ -12,7 +12,7 @@ namespace blink { |
| class LayoutObject; |
| class NGConstraintSpace; |
| -class NGPhysicalFragment; |
| +class NGLayoutResult; |
| // Represents the input to a layout algorithm for a given node. The layout |
| // engine should use the style, node type to determine which type of layout |
| @@ -25,7 +25,7 @@ class CORE_EXPORT NGLayoutInputNode |
| virtual ~NGLayoutInputNode(){}; |
| // Performs layout on this input node, will return a new fragment. |
|
ikilpatrick
2017/02/21 22:26:02
update comment.
cbiesinger
2017/02/22 18:09:01
Done.
|
| - virtual RefPtr<NGPhysicalFragment> Layout(NGConstraintSpace*) = 0; |
| + virtual RefPtr<NGLayoutResult> Layout(NGConstraintSpace*) = 0; |
| // Returns the next sibling. |
| virtual NGLayoutInputNode* NextSibling() = 0; |