OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_TILES_TILING_SET_EVICTION_QUEUE_H_ | 5 #ifndef CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
6 #define CC_TILES_TILING_SET_EVICTION_QUEUE_H_ | 6 #define CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
10 #include "cc/base/cc_export.h" | 12 #include "cc/base/cc_export.h" |
11 #include "cc/tiles/picture_layer_tiling_set.h" | 13 #include "cc/tiles/picture_layer_tiling_set.h" |
12 #include "cc/tiles/prioritized_tile.h" | 14 #include "cc/tiles/prioritized_tile.h" |
13 | 15 |
14 namespace cc { | 16 namespace cc { |
15 | 17 |
16 // This eviction queue returned tiles from all tilings in a tiling set in | 18 // This eviction queue returned tiles from all tilings in a tiling set in |
17 // the order in which the tiles should be evicted. It can be thought of as the | 19 // the order in which the tiles should be evicted. It can be thought of as the |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 EventuallyTilingIterator eventually_iterator_; | 196 EventuallyTilingIterator eventually_iterator_; |
195 SoonBorderTilingIterator soon_iterator_; | 197 SoonBorderTilingIterator soon_iterator_; |
196 SkewportTilingIterator skewport_iterator_; | 198 SkewportTilingIterator skewport_iterator_; |
197 PendingVisibleTilingIterator pending_visible_iterator_; | 199 PendingVisibleTilingIterator pending_visible_iterator_; |
198 VisibleTilingIterator visible_iterator_; | 200 VisibleTilingIterator visible_iterator_; |
199 }; | 201 }; |
200 | 202 |
201 } // namespace cc | 203 } // namespace cc |
202 | 204 |
203 #endif // CC_TILES_TILING_SET_EVICTION_QUEUE_H_ | 205 #endif // CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
OLD | NEW |