blob: 10f23a49c497790240c9ccac7cbc0b974f86855b [file] [log] [blame]
// 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.
#ifndef NGBox_h
#define NGBox_h
#include "core/layout/ng/ng_box_iterator.h"
#include "core/layout/LayoutBox.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
namespace blink {
class ComputedStyle;
class LayoutBox;
class NGConstraintSpace;
class NGFragment;
// Represents a node to be laid out.
class CORE_EXPORT NGBox final {
public:
explicit NGBox(LayoutObject* layoutObject)
: m_layoutBox(toLayoutBox(layoutObject)) {}
NGBoxIterator iterator() { return NGBoxIterator(m_layoutBox); }
operator bool() const { return m_layoutBox; }
NGFragment* layout(const NGConstraintSpace&);
const ComputedStyle* style() const;
private:
LayoutBox* m_layoutBox;
};
} // namespace blink
#endif // NGBox_h