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

Unified Diff: cc/trees/layer_tree_host_impl.cc

Issue 463403002: Include tile manager state in lthi state dump (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_impl.cc
diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc
index e155be69517bd86761125deddecbded319767b07..acd37ecb5dc7b666cc717aeb98fd658b27aaef6d 100644
--- a/cc/trees/layer_tree_host_impl.cc
+++ b/cc/trees/layer_tree_host_impl.cc
@@ -3200,6 +3200,10 @@ void LayerTreeHostImpl::AsValueWithFrameInto(
state->BeginArray("tiles");
tile_manager_->AllTilesAsValueInto(state);
state->EndArray();
+
+ state->BeginDictionary("tile_manager_basic_state");
+ tile_manager_->BasicStateAsValueInto(state);
+ state->EndDictionary();
}
state->BeginDictionary("active_tree");
active_tree_->AsValueInto(state);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698