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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_legacy_block_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_legacy_block_layout_algorithm.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
index 015213dd9c2b5a2e65acd9370e4ece2b4d47636f..3f4d8c630fbd3969765fee1fb50e5c77212f11d7 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_legacy_block_layout_algorithm.cc
@@ -4,7 +4,7 @@
#include "core/layout/ng/ng_legacy_block_layout_algorithm.h"
-#include "core/layout/ng/ng_physical_fragment.h"
+#include "core/layout/ng/ng_physical_box_fragment.h"
namespace blink {
@@ -16,8 +16,8 @@ NGLegacyBlockLayoutAlgorithm::NGLegacyBlockLayoutAlgorithm(
constraint_space_(constraint_space) {}
NGLayoutStatus NGLegacyBlockLayoutAlgorithm::Layout(
- NGPhysicalFragmentBase*,
- NGPhysicalFragmentBase** fragment_out,
+ NGPhysicalFragment*,
+ NGPhysicalFragment** fragment_out,
NGLayoutAlgorithm**) {
*fragment_out = block_->RunOldLayout(*constraint_space_);
return kNewFragment;

Powered by Google App Engine
This is Rietveld 408576698