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

Unified Diff: cc/layers/effect_tree_layer_list_iterator_unittest.cc

Issue 2834123002: cc: Replace render surface layer list with a render surface list (Closed)
Patch Set: . Created 3 years, 8 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 | cc/layers/layer_collections.h » ('j') | cc/layers/render_surface_impl.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/effect_tree_layer_list_iterator_unittest.cc
diff --git a/cc/layers/effect_tree_layer_list_iterator_unittest.cc b/cc/layers/effect_tree_layer_list_iterator_unittest.cc
index 6d6fb8d0a9bb53b21d0f125145831ae16a982d21..07efa7da8444c72d3c35b7c269898098a9ce1204 100644
--- a/cc/layers/effect_tree_layer_list_iterator_unittest.cc
+++ b/cc/layers/effect_tree_layer_list_iterator_unittest.cc
@@ -108,9 +108,9 @@ TEST_F(EffectTreeLayerListIteratorTest, TreeWithNoDrawnLayers) {
host_impl_.active_tree()->SetRootLayerForTesting(std::move(root_layer));
- LayerImplList render_surface_layer_list;
+ RenderSurfaceList render_surface_list;
LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
- root_ptr, root_ptr->bounds(), &render_surface_layer_list);
+ root_ptr, root_ptr->bounds(), &render_surface_list);
LayerTreeHostCommon::CalculateDrawPropertiesForTesting(&inputs);
IterateFrontToBack();
@@ -137,9 +137,9 @@ TEST_F(EffectTreeLayerListIteratorTest, SimpleTree) {
host_impl_.active_tree()->SetRootLayerForTesting(std::move(root_layer));
- LayerImplList render_surface_layer_list;
+ RenderSurfaceList render_surface_list;
LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
- root_ptr, root_ptr->bounds(), &render_surface_layer_list);
+ root_ptr, root_ptr->bounds(), &render_surface_list);
LayerTreeHostCommon::CalculateDrawPropertiesForTesting(&inputs);
IterateFrontToBack();
@@ -182,9 +182,9 @@ TEST_F(EffectTreeLayerListIteratorTest, ComplexTree) {
host_impl_.active_tree()->SetRootLayerForTesting(std::move(root_layer));
- LayerImplList render_surface_layer_list;
+ RenderSurfaceList render_surface_list;
LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
- root_ptr, root_ptr->bounds(), &render_surface_layer_list);
+ root_ptr, root_ptr->bounds(), &render_surface_list);
LayerTreeHostCommon::CalculateDrawPropertiesForTesting(&inputs);
IterateFrontToBack();
@@ -235,9 +235,9 @@ TEST_F(EffectTreeLayerListIteratorTest, ComplexTreeMultiSurface) {
host_impl_.active_tree()->SetRootLayerForTesting(std::move(root_layer));
- LayerImplList render_surface_layer_list;
+ RenderSurfaceList render_surface_list;
LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs(
- root_ptr, root_ptr->bounds(), &render_surface_layer_list);
+ root_ptr, root_ptr->bounds(), &render_surface_list);
LayerTreeHostCommon::CalculateDrawPropertiesForTesting(&inputs);
IterateFrontToBack();
« no previous file with comments | « no previous file | cc/layers/layer_collections.h » ('j') | cc/layers/render_surface_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698