Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: cc/resources/picture_layer_tiling.h

Issue 471833002: cc: Add more eviction categories to picture layer impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/resources/picture_layer_tiling.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/picture_layer_tiling.h
diff --git a/cc/resources/picture_layer_tiling.h b/cc/resources/picture_layer_tiling.h
index a252bafe82dcf8a355c8afb5a4a724169ec6ab8b..415ad4279e0b543e624332522196e2ebb9e60bc2 100644
--- a/cc/resources/picture_layer_tiling.h
+++ b/cc/resources/picture_layer_tiling.h
@@ -57,10 +57,13 @@ class CC_EXPORT PictureLayerTiling {
public:
enum EvictionCategory {
EVENTUALLY,
+ EVENTUALLY_AND_REQUIRED_FOR_ACTIVATION,
SOON,
+ SOON_AND_REQUIRED_FOR_ACTIVATION,
NOW,
NOW_AND_REQUIRED_FOR_ACTIVATION
};
+
class CC_EXPORT TilingRasterTileIterator {
public:
TilingRasterTileIterator();
@@ -336,10 +339,16 @@ class CC_EXPORT PictureLayerTiling {
bool has_soon_border_rect_tiles_;
bool has_eventually_rect_tiles_;
- std::vector<Tile*> eventually_eviction_tiles_;
- std::vector<Tile*> soon_eviction_tiles_;
- std::vector<Tile*> now_eviction_tiles_;
- std::vector<Tile*> now_and_required_for_activation_eviction_tiles_;
+ // TODO(reveman): Remove this in favour of an array of eviction_tiles_ when we
+ // change all enums to have a consistent way of getting the count/last
+ // element.
+ std::vector<Tile*> eviction_tiles_now_;
+ std::vector<Tile*> eviction_tiles_now_and_required_for_activation_;
+ std::vector<Tile*> eviction_tiles_soon_;
+ std::vector<Tile*> eviction_tiles_soon_and_required_for_activation_;
+ std::vector<Tile*> eviction_tiles_eventually_;
+ std::vector<Tile*> eviction_tiles_eventually_and_required_for_activation_;
+
bool eviction_tiles_cache_valid_;
TreePriority eviction_cache_tree_priority_;
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/resources/picture_layer_tiling.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698