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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc

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_coordinator.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc b/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
index 9528a97d35a941325bd83f9d5a5c11dd6316b638..977f1c704a528daf14a58f6df3cc3a9e095819f4 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.cc
@@ -5,7 +5,7 @@
#include "core/layout/ng/ng_layout_coordinator.h"
#include "core/layout/ng/ng_layout_input_node.h"
-#include "core/layout/ng/ng_physical_fragment_base.h"
+#include "core/layout/ng/ng_physical_fragment.h"
namespace blink {
@@ -15,14 +15,14 @@ NGLayoutCoordinator::NGLayoutCoordinator(NGLayoutInputNode* input_node,
NGLayoutInputNode::AlgorithmForInputNode(input_node, constraint_space));
}
-bool NGLayoutCoordinator::Tick(NGPhysicalFragmentBase** out_fragment) {
+bool NGLayoutCoordinator::Tick(NGPhysicalFragment** out_fragment) {
NGLayoutAlgorithm* child_algorithm;
// Tick should never be called without a layout algorithm on the stack.
DCHECK(layout_algorithms_.size());
- NGPhysicalFragmentBase* fragment;
- NGPhysicalFragmentBase* in_fragment = fragment_;
+ NGPhysicalFragment* fragment;
+ NGPhysicalFragment* in_fragment = fragment_;
fragment_ = nullptr;
switch (layout_algorithms_.back()->Layout(in_fragment, &fragment,

Powered by Google App Engine
This is Rietveld 408576698