CC: Fix raster-on-demand (due to stale sort order).
Tile sort order dirty bit didn't respect tree priority
changes. This patch only updates GlobalState on ManageTiles,
to ensure the state is consistent with tile sorting.
BUG=295331
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/24269016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224994 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
index 41218125..17dc7472 100644
--- a/cc/trees/layer_tree_host_impl.h
+++ b/cc/trees/layer_tree_host_impl.h
@@ -507,6 +507,8 @@
scoped_ptr<TileManager> tile_manager_;
scoped_ptr<Renderer> renderer_;
+ GlobalStateThatImpactsTilePriority global_tile_state_;
+
// Tree currently being drawn.
scoped_ptr<LayerTreeImpl> active_tree_;