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

Unified Diff: cc/trees/layer_tree_host.cc

Issue 1975623002: cc : Add LayerToPropertyTreeIndices map to PropertyTrees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
Index: cc/trees/layer_tree_host.cc
diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc
index a06ea9e9d9d55bbe8892d2f3739006b550c6e510..d87fb9127aba90a7904782b31fec5b0d899dc6dc 100644
--- a/cc/trees/layer_tree_host.cc
+++ b/cc/trees/layer_tree_host.cc
@@ -542,10 +542,10 @@ void LayerTreeHost::FinishCommitOnImplThread(LayerTreeHostImpl* host_impl) {
// active tree.
if (property_trees_changed_on_active_tree)
property_trees_.ResetAllChangeTracking(
- PropertyTrees::ResetFlags::ALL_TREES);
+ PropertyTrees::Types::EFFECT_AND_TRANSFORM_TREES);
else
property_trees_.ResetAllChangeTracking(
- PropertyTrees::ResetFlags::TRANSFORM_TREE);
+ PropertyTrees::Types::TRANSFORM_TREE);
}
void LayerTreeHost::WillCommit() {

Powered by Google App Engine
This is Rietveld 408576698