Index: cc/trees/tree_synchronizer.cc |
diff --git a/cc/trees/tree_synchronizer.cc b/cc/trees/tree_synchronizer.cc |
index 60177bf0648e7e0255e79d1b145740f023ceeb3d..753fa259694fdc8eab164f5683462ec768cae011 100644 |
--- a/cc/trees/tree_synchronizer.cc |
+++ b/cc/trees/tree_synchronizer.cc |
@@ -13,6 +13,7 @@ |
#include "cc/layers/layer.h" |
#include "cc/layers/layer_collections.h" |
#include "cc/layers/layer_impl.h" |
+#include "cc/trees/layer_tree.h" |
#include "cc/trees/layer_tree_host.h" |
#include "cc/trees/layer_tree_impl.h" |
@@ -104,10 +105,15 @@ void TreeSynchronizer::PushLayerProperties(LayerTreeImpl* pending_tree, |
active_tree); |
} |
-void TreeSynchronizer::PushLayerProperties(LayerTreeHost* host_tree, |
+void TreeSynchronizer::PushLayerProperties(LayerTree* host_tree, |
LayerTreeImpl* impl_tree) { |
PushLayerPropertiesInternal(host_tree->LayersThatShouldPushProperties(), |
impl_tree); |
} |
+void TreeSynchronizer::PushLayerProperties(LayerTreeHost* host_tree, |
+ LayerTreeImpl* impl_tree) { |
+ PushLayerProperties(host_tree->GetLayerTree(), impl_tree); |
+} |
+ |
} // namespace cc |