#include "third_party/blink/renderer/core/layout/table/layout_table_row.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/editing/position_with_affinity.h"
#include "third_party/blink/renderer/core/layout/table/layout_table.h"
#include "third_party/blink/renderer/core/layout/table/layout_table_cell.h"
#include "third_party/blink/renderer/core/layout/table/layout_table_section.h"
#include "third_party/blink/renderer/core/layout/table/table_borders.h"
namespace blink {
LayoutTableRow::LayoutTableRow(Element* element) : … { … }
LayoutTableRow* LayoutTableRow::CreateAnonymousWithParent(
const LayoutObject& parent) { … }
LayoutTableCell* LayoutTableRow::FirstCell() const { … }
LayoutTableCell* LayoutTableRow::LastCell() const { … }
LayoutTableRow* LayoutTableRow::NextRow() const { … }
LayoutTableRow* LayoutTableRow::PreviousRow() const { … }
LayoutTableSection* LayoutTableRow::Section() const { … }
LayoutTable* LayoutTableRow::Table() const { … }
void LayoutTableRow::AddChild(LayoutObject* child, LayoutObject* before_child) { … }
void LayoutTableRow::RemoveChild(LayoutObject* child) { … }
void LayoutTableRow::WillBeRemovedFromTree() { … }
void LayoutTableRow::StyleDidChange(StyleDifference diff,
const ComputedStyle* old_style) { … }
LayoutBox* LayoutTableRow::CreateAnonymousBoxWithSameTypeAs(
const LayoutObject* parent) const { … }
LayoutBlock* LayoutTableRow::StickyContainer() const { … }
PositionWithAffinity LayoutTableRow::PositionForPoint(
const PhysicalOffset& offset) const { … }
unsigned LayoutTableRow::RowIndex() const { … }
}