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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.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_text_layout_algorithm.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
index 4009d8e6f12bcf5beb68e9908e44b28e2abb9afd..b98b2ddc6235cfdf70cbbe276439f54afac82cdc 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_text_layout_algorithm.cc
@@ -6,12 +6,12 @@
#include "core/layout/ng/ng_break_token.h"
#include "core/layout/ng/ng_constraint_space.h"
-#include "core/layout/ng/ng_fragment.h"
#include "core/layout/ng/ng_fragment_builder.h"
#include "core/layout/ng/ng_line_builder.h"
#include "core/layout/ng/ng_text_fragment.h"
#include "core/layout/ng/ng_inline_node.h"
#include "core/style/ComputedStyle.h"
+#include "core/layout/ng/ng_box_fragment.h"
namespace blink {
@@ -26,10 +26,9 @@ NGTextLayoutAlgorithm::NGTextLayoutAlgorithm(
DCHECK(inline_box_);
}
-NGLayoutStatus NGTextLayoutAlgorithm::Layout(
- NGPhysicalFragmentBase*,
- NGPhysicalFragmentBase** fragment_out,
- NGLayoutAlgorithm**) {
+NGLayoutStatus NGTextLayoutAlgorithm::Layout(NGPhysicalFragment*,
+ NGPhysicalFragment** fragment_out,
+ NGLayoutAlgorithm**) {
ASSERT_NOT_REACHED();
*fragment_out = nullptr;
return kNewFragment;

Powered by Google App Engine
This is Rietveld 408576698