blob: d51ed53386566656a4f726c162aa5493a615790d [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 LayoutNGTableCell_h
#define LayoutNGTableCell_h
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/layout_table_cell.h"
#include "third_party/blink/renderer/core/layout/ng/layout_ng_block_flow_mixin.h"
namespace blink {
class CORE_EXPORT LayoutNGTableCell final
: public LayoutNGBlockFlowMixin<LayoutTableCell> {
public:
explicit LayoutNGTableCell(Element*);
void UpdateBlockLayout(bool relayout_children) override;
const char* GetName() const override { return "LayoutNGTableCell"; }
};
} // namespace blink
#endif // LayoutNGTableCell_h