chromium/third_party/blink/renderer/core/layout/table/layout_table_row.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace blink