// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_FRAGMENTAINER_ITERATOR_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_FRAGMENTAINER_ITERATOR_H_ #include "third_party/blink/renderer/core/layout/multi_column_fragmentainer_group.h" #include "third_party/blink/renderer/platform/wtf/allocator/allocator.h" namespace blink { class LayoutFlowThread; class LayoutMultiColumnSet; // Used to find the fragmentainers that intersect with a given portion of the // flow thread. The portion typically corresponds to the bounds of some // descendant layout object. The iterator walks in block direction order. class FragmentainerIterator { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_FRAGMENTAINER_ITERATOR_H_