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

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

Issue 2668183003: [LayoutNG] Make NG algorithms non-oilpan. (Closed)
Patch Set: fix win compile 2? 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.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.cc
deleted file mode 100644
index dcb0e2745553bfae22872565886033c594fd9f74..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/layout/ng/ng_layout_input_node.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "core/layout/ng/ng_layout_input_node.h"
-
-#include "core/layout/ng/ng_block_layout_algorithm.h"
-#include "core/layout/ng/ng_block_node.h"
-#include "core/layout/ng/ng_constraint_space.h"
-#include "core/layout/ng/ng_inline_layout_algorithm.h"
-#include "core/layout/ng/ng_inline_node.h"
-#include "core/layout/ng/ng_layout_algorithm.h"
-#include "core/layout/ng/ng_legacy_block_layout_algorithm.h"
-#include "core/style/ComputedStyle.h"
-
-namespace blink {
-
-NGLayoutAlgorithm* NGLayoutInputNode::AlgorithmForInputNode(
- NGLayoutInputNode* input_node,
- NGConstraintSpace* constraint_space) {
- // At least for now, this should never be called on LegacyInline
- // children. However, there will be other kinds of input_node so
- // it makes sense to do this here.
- DCHECK(input_node->Type() == kLegacyBlock);
- NGBlockNode* block = toNGBlockNode(input_node);
- if (!block->CanUseNewLayout())
- return new NGLegacyBlockLayoutAlgorithm(block, constraint_space);
- const ComputedStyle& style = block->Style();
- LayoutObject* layout_object = input_node->GetLayoutObject();
- if (block->HasInlineChildren()) {
- NGInlineNode* child = toNGInlineNode(block->FirstChild());
- return new NGInlineLayoutAlgorithm(layout_object, &style, child,
- constraint_space);
- }
- NGBlockNode* child = toNGBlockNode(block->FirstChild());
- // TODO(layout-ng): The break token should be passed as an argument to this
- // method instead of getting it from the NGBlockNode
- NGBreakToken* token = block->CurrentBreakToken();
- return new NGBlockLayoutAlgorithm(layout_object, &style, child,
- constraint_space, token);
-}
-}

Powered by Google App Engine
This is Rietveld 408576698