| Index: third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_box.cc b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..938432e49c3047aac68ee09be5b04e154352caef
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| @@ -0,0 +1,28 @@
|
| +// 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_box.h"
|
| +
|
| +#include "core/layout/ng/ng_block_layout_algorithm.h"
|
| +
|
| +namespace blink {
|
| +
|
| +NGFragment* NGBox::layout(const NGConstraintSpace& constraintSpace) {
|
| + NGBlockLayoutAlgorithm algorithm(*this);
|
| + return algorithm.layout(constraintSpace);
|
| +}
|
| +
|
| +const ComputedStyle& NGBox::style() const {
|
| + return m_layoutObject->styleRef();
|
| +}
|
| +
|
| +const NGBox NGBox::firstChild() const {
|
| + return NGBox(m_layoutObject->slowFirstChild());
|
| +}
|
| +
|
| +const NGBox NGBox::nextSibling() const {
|
| + return NGBox(m_layoutObject->nextSibling());
|
| +}
|
| +
|
| +} // namespace blink
|
|
|