| Index: cc/resources/raster_tile_priority_queue.h
|
| diff --git a/cc/resources/raster_tile_priority_queue.h b/cc/resources/raster_tile_priority_queue.h
|
| index 104050e592c3c58de564ea0359c05b8753bda9b6..cd5b450dfa315a5fabd72f993f46ff0654c9eadc 100644
|
| --- a/cc/resources/raster_tile_priority_queue.h
|
| +++ b/cc/resources/raster_tile_priority_queue.h
|
| @@ -12,7 +12,7 @@
|
| #include "cc/resources/tile_priority.h"
|
|
|
| namespace cc {
|
| -class Tile;
|
| +class PrioritizedTile;
|
|
|
| class CC_EXPORT RasterTilePriorityQueue {
|
| public:
|
| @@ -27,7 +27,7 @@ class CC_EXPORT RasterTilePriorityQueue {
|
| virtual ~RasterTilePriorityQueue() {}
|
|
|
| virtual bool IsEmpty() const = 0;
|
| - virtual Tile* Top() = 0;
|
| + virtual const PrioritizedTile& Top() const = 0;
|
| virtual void Pop() = 0;
|
|
|
| protected:
|
|
|