// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_TILES_TILING_SET_RASTER_QUEUE_ALL_H_ #define CC_TILES_TILING_SET_RASTER_QUEUE_ALL_H_ #include <stddef.h> #include <memory> #include <optional> #include "base/notreached.h" #include "cc/cc_export.h" #include "cc/tiles/prioritized_tile.h" #include "cc/tiles/tile.h" #include "cc/tiles/tile_priority.h" #include "third_party/abseil-cpp/absl/container/inlined_vector.h" namespace cc { class PictureLayerTilingSet; // This queue returns all tiles required to be rasterized from HIGH_RESOLUTION // and LOW_RESOLUTION tilings. class CC_EXPORT TilingSetRasterQueueAll { … }; } // namespace cc #endif // CC_TILES_TILING_SET_RASTER_QUEUE_ALL_H_