Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CC_RESOURCES_TILE_PRIORITY_QUEUE_H_ | |
| 6 #define CC_RESOURCES_TILE_PRIORITY_QUEUE_H_ | |
| 7 | |
| 8 namespace cc { | |
| 9 | |
| 10 class Tile; | |
| 11 | |
| 12 class TilePriorityQueue { | |
|
reveman
2014/07/15 01:51:10
Do we still need this interface?
vmpstr
2014/07/15 05:36:27
Now that both LTHI and tile manager know about spe
vmpstr
2014/07/15 17:47:21
I'm going to keep this for now, and put GetPairedP
| |
| 13 public: | |
| 14 virtual void Pop() = 0; | |
| 15 virtual bool IsEmpty() = 0; | |
| 16 virtual Tile* Top() = 0; | |
| 17 | |
| 18 protected: | |
| 19 virtual ~TilePriorityQueue() {} | |
| 20 }; | |
| 21 | |
| 22 } // namespace cc | |
| 23 | |
| 24 #endif // CC_RESOURCES_TILE_PRIORITY_QUEUE_H_ | |
| OLD | NEW |