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 #include "cc/base/cc_export.h" | |
9 | |
10 namespace cc { | |
11 | |
12 class Tile; | |
13 | |
14 class CC_EXPORT TilePriorityQueue { | |
reveman
2014/07/14 15:52:38
I don't think you need CC_EXPORT when the dtor is
vmpstr
2014/07/14 18:10:44
Done.
| |
15 public: | |
16 virtual void Pop() = 0; | |
17 virtual bool IsEmpty() = 0; | |
18 virtual Tile* Top() = 0; | |
19 | |
20 protected: | |
21 virtual ~TilePriorityQueue() {} | |
22 }; | |
23 | |
24 } // namespace cc | |
25 | |
26 #endif // CC_RESOURCES_TILE_PRIORITY_QUEUE_H_ | |
OLD | NEW |