| Index: cc/resources/tiling_set_raster_queue_all.h
|
| diff --git a/cc/resources/tiling_set_raster_queue_all.h b/cc/resources/tiling_set_raster_queue_all.h
|
| index bea70d3f7c847a56ee8cebab371f126334457892..5577c6c58aaf14b7936e30f9a13d6e7ca7595b49 100644
|
| --- a/cc/resources/tiling_set_raster_queue_all.h
|
| +++ b/cc/resources/tiling_set_raster_queue_all.h
|
| @@ -9,23 +9,21 @@
|
| #include "cc/resources/picture_layer_tiling_set.h"
|
| #include "cc/resources/tile.h"
|
| #include "cc/resources/tile_priority.h"
|
| -#include "cc/resources/tiling_set_raster_queue.h"
|
|
|
| namespace cc {
|
|
|
| // This queue returns all tiles required to be rasterized from HIGH_RESOLUTION
|
| // and LOW_RESOLUTION tilings.
|
| -class CC_EXPORT TilingSetRasterQueueAll
|
| - : public NON_EXPORTED_BASE(TilingSetRasterQueue) {
|
| +class CC_EXPORT TilingSetRasterQueueAll {
|
| public:
|
| TilingSetRasterQueueAll(PictureLayerTilingSet* tiling_set,
|
| bool prioritize_low_res);
|
| - ~TilingSetRasterQueueAll() override;
|
| + ~TilingSetRasterQueueAll();
|
|
|
| - Tile* Top() override;
|
| - const Tile* Top() const override;
|
| - void Pop() override;
|
| - bool IsEmpty() const override;
|
| + Tile* Top();
|
| + const Tile* Top() const;
|
| + void Pop();
|
| + bool IsEmpty() const;
|
|
|
| private:
|
| class TilingIterator {
|
|
|