| Index: cc/resources/raster_tile_priority_queue_all.h
|
| diff --git a/cc/resources/raster_tile_priority_queue_all.h b/cc/resources/raster_tile_priority_queue_all.h
|
| index cd1c29015322cddff1381da1e8016120a26addac..2cb65cc3a57df5e843d4d88e52cd4f47a94ab992 100644
|
| --- a/cc/resources/raster_tile_priority_queue_all.h
|
| +++ b/cc/resources/raster_tile_priority_queue_all.h
|
| @@ -23,7 +23,7 @@ class CC_EXPORT RasterTilePriorityQueueAll : public RasterTilePriorityQueue {
|
| ~RasterTilePriorityQueueAll() override;
|
|
|
| bool IsEmpty() const override;
|
| - Tile* Top() override;
|
| + const PrioritizedTile& Top() const override;
|
| void Pop() override;
|
|
|
| private:
|
| @@ -34,6 +34,7 @@ class CC_EXPORT RasterTilePriorityQueueAll : public RasterTilePriorityQueue {
|
| TreePriority tree_priority);
|
|
|
| ScopedPtrVector<TilingSetRasterQueueAll>& GetNextQueues();
|
| + const ScopedPtrVector<TilingSetRasterQueueAll>& GetNextQueues() const;
|
|
|
| ScopedPtrVector<TilingSetRasterQueueAll> active_queues_;
|
| ScopedPtrVector<TilingSetRasterQueueAll> pending_queues_;
|
|
|