#ifndef CC_TILES_TILING_SET_COVERAGE_ITERATOR_H_
#define CC_TILES_TILING_SET_COVERAGE_ITERATOR_H_
#include <algorithm>
#include <concepts>
#include <memory>
#include <optional>
#include <vector>
#include "base/check.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "cc/base/region.h"
#include "cc/tiles/tile_index.h"
#include "cc/tiles/tiling_coverage_iterator.h"
#include "cc/tiles/tiling_internal.h"
#include "ui/gfx/geometry/rect.h"
namespace cc {
namespace internal {
TilingWithCover;
}
template <typename T>
requires internal::TilingWithCover<T>
class TilingSetCoverageIterator { … };
}
#endif