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

Unified Diff: cc/layers/picture_layer_impl.cc

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 | « no previous file | cc/resources/picture_layer_tiling.h » ('j') | cc/resources/picture_layer_tiling.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/picture_layer_impl.cc
diff --git a/cc/layers/picture_layer_impl.cc b/cc/layers/picture_layer_impl.cc
index 8dbfeddcb3678952a21b3b7d7df368b5c9c3ca45..49ad601cf1db0b2094f664afbace1fa3a4baa829 100644
--- a/cc/layers/picture_layer_impl.cc
+++ b/cc/layers/picture_layer_impl.cc
@@ -1617,9 +1617,16 @@ PictureLayerImpl::LayerEvictionTileIterator::operator bool() const {
bool PictureLayerImpl::LayerEvictionTileIterator::AdvanceToNextCategory() {
switch (current_category_) {
case PictureLayerTiling::EVENTUALLY:
+ current_category_ =
+ PictureLayerTiling::EVENTUALLY_AND_REQUIRED_FOR_ACTIVATION;
+ return true;
+ case PictureLayerTiling::EVENTUALLY_AND_REQUIRED_FOR_ACTIVATION:
current_category_ = PictureLayerTiling::SOON;
return true;
case PictureLayerTiling::SOON:
+ current_category_ = PictureLayerTiling::SOON_AND_REQUIRED_FOR_ACTIVATION;
+ return true;
+ case PictureLayerTiling::SOON_AND_REQUIRED_FOR_ACTIVATION:
current_category_ = PictureLayerTiling::NOW;
return true;
case PictureLayerTiling::NOW:
« no previous file with comments | « no previous file | cc/resources/picture_layer_tiling.h » ('j') | cc/resources/picture_layer_tiling.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698