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.
5 #ifndef CC_RESOURCES_EVICTION_TILE_PRIORITY_QUEUE_H_
6 #define CC_RESOURCES_EVICTION_TILE_PRIORITY_QUEUE_H_
12 #include "cc/base/cc_export.h"
13 #include "cc/layers/picture_layer_impl.h"
14 #include "cc/resources/tile_priority.h"
15 #include "cc/resources/tiling_set_eviction_queue.h"
19 class CC_EXPORT EvictionTilePriorityQueue
{
21 struct PairedTilingSetQueue
{
22 PairedTilingSetQueue();
23 PairedTilingSetQueue(const PictureLayerImpl::Pair
& layer_pair
,
24 TreePriority tree_priority
);
25 ~PairedTilingSetQueue();
31 WhichTree
NextTileIteratorTree() const;
33 scoped_ptr
<TilingSetEvictionQueue
> active_queue
;
34 scoped_ptr
<TilingSetEvictionQueue
> pending_queue
;
36 // Set of returned tiles (excluding the current one) for DCHECKing.
37 std::set
<const Tile
*> returned_tiles_for_debug
;
40 EvictionTilePriorityQueue();
41 ~EvictionTilePriorityQueue();
43 void Build(const std::vector
<PictureLayerImpl::Pair
>& paired_layers
,
44 TreePriority tree_priority
);
51 // TODO(vmpstr): This is potentially unnecessary if it becomes the case that
52 // PairedTilingSetQueue is fast enough to copy. In that case, we can use
53 // objects directly (ie std::vector<PairedTilingSetQueue>).
54 ScopedPtrVector
<PairedTilingSetQueue
> paired_queues_
;
55 TreePriority tree_priority_
;
57 DISALLOW_COPY_AND_ASSIGN(EvictionTilePriorityQueue
);
62 #endif // CC_RESOURCES_EVICTION_TILE_PRIORITY_QUEUE_H_