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

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

Issue 2612103004: [ng_layout] Rename NGFragmentBase,NGFragment,NGPhysicalFragment (Closed)
Patch Set: CR: rename ifdef guards 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_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 7bb57426b26c29c68a5d91f297553058927d663d..ebe8f8cdfd8dcd20010462911c8f4e8c5f2f4f95 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
@@ -11,7 +11,7 @@
namespace blink {
class NGConstraintSpace;
-class NGFragmentBase;
+class NGFragment;
class NGLayoutAlgorithm;
// Represents the input to a layout algorithm for a given node. The layout
@@ -27,7 +27,7 @@ class CORE_EXPORT NGLayoutInputNode
// Returns true when done; when this function returns false, it has to be
// called again. The out parameter will only be set when this function
// returns true. The same constraint space has to be passed each time.
- virtual bool Layout(NGConstraintSpace*, NGFragmentBase**) = 0;
+ virtual bool Layout(NGConstraintSpace*, NGFragment**) = 0;
// Returns the next sibling.
virtual NGLayoutInputNode* NextSibling() = 0;

Powered by Google App Engine
This is Rietveld 408576698