// Copyright 2022 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/table_child_iterator.h" #include "third_party/blink/renderer/core/layout/block_break_token.h" namespace blink { TableChildIterator::TableChildIterator( const TableGroupedChildren& grouped_children, const BlockBreakToken* break_token) : … { … } TableChildIterator::Entry TableChildIterator::NextChild() { … } BlockNode TableChildIterator::CurrentChild() const { … } void TableChildIterator::AdvanceChild() { … } } // namespace blink