| 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_RESOURCES_TILING_SET_EVICTION_QUEUE_H_ | 5 #ifndef CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
| 6 #define CC_RESOURCES_TILING_SET_EVICTION_QUEUE_H_ | 6 #define CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| 11 #include "cc/resources/picture_layer_tiling_set.h" | 11 #include "cc/tiles/picture_layer_tiling_set.h" |
| 12 #include "cc/resources/prioritized_tile.h" | 12 #include "cc/tiles/prioritized_tile.h" |
| 13 | 13 |
| 14 namespace cc { | 14 namespace cc { |
| 15 | 15 |
| 16 // This eviction queue returned tiles from all tilings in a tiling set in | 16 // 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 | 17 // the order in which the tiles should be evicted. It can be thought of as the |
| 18 // following: | 18 // following: |
| 19 // for all phases: | 19 // for all phases: |
| 20 // for all ordered tilings: | 20 // for all ordered tilings: |
| 21 // yield the next tile for the given phase from the given tiling | 21 // yield the next tile for the given phase from the given tiling |
| 22 // | 22 // |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 EventuallyTilingIterator eventually_iterator_; | 194 EventuallyTilingIterator eventually_iterator_; |
| 195 SoonBorderTilingIterator soon_iterator_; | 195 SoonBorderTilingIterator soon_iterator_; |
| 196 SkewportTilingIterator skewport_iterator_; | 196 SkewportTilingIterator skewport_iterator_; |
| 197 PendingVisibleTilingIterator pending_visible_iterator_; | 197 PendingVisibleTilingIterator pending_visible_iterator_; |
| 198 VisibleTilingIterator visible_iterator_; | 198 VisibleTilingIterator visible_iterator_; |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 } // namespace cc | 201 } // namespace cc |
| 202 | 202 |
| 203 #endif // CC_RESOURCES_TILING_SET_EVICTION_QUEUE_H_ | 203 #endif // CC_TILES_TILING_SET_EVICTION_QUEUE_H_ |
| OLD | NEW |