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

Unified Diff: cc/trees/layer_tree_host_common.cc

Issue 1146523005: cc: Remove LTHCommon temporary property trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « cc/trees/layer_tree_host_common.h ('k') | 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_common.cc
diff --git a/cc/trees/layer_tree_host_common.cc b/cc/trees/layer_tree_host_common.cc
index 09882856e55e5dc2727ee9fe6809a1b39ae62094..d7a6714827788350f215d99f6d4d3dc1545f5e3b 100644
--- a/cc/trees/layer_tree_host_common.cc
+++ b/cc/trees/layer_tree_host_common.cc
@@ -2747,14 +2747,12 @@ void LayerTreeHostCommon::CalculateDrawProperties(
CalculateDrawPropertiesAndVerify(inputs, BUILD_PROPERTY_TREES_IF_NEEDED);
}
-PropertyTrees* GetPropertyTrees(Layer* layer,
- PropertyTrees* trees_from_inputs) {
+PropertyTrees* GetPropertyTrees(Layer* layer) {
return layer->layer_tree_host()->property_trees();
}
-PropertyTrees* GetPropertyTrees(LayerImpl* layer,
- PropertyTrees* trees_from_inputs) {
- return trees_from_inputs;
+PropertyTrees* GetPropertyTrees(LayerImpl* layer) {
+ return layer->layer_tree_impl()->property_trees();
}
} // namespace cc
« no previous file with comments | « cc/trees/layer_tree_host_common.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698