Index: cc/trees/layer_tree_host_impl_unittest.cc |
diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc |
index e03c7941527a6421b762bc6eac2925b7ddd48981..2517ebd4ded515a11a598e764b22423817a15e90 100644 |
--- a/cc/trees/layer_tree_host_impl_unittest.cc |
+++ b/cc/trees/layer_tree_host_impl_unittest.cc |
@@ -1620,7 +1620,7 @@ TEST_F(LayerTreeHostImplTest, AnimationSchedulingCommitToActiveTree) { |
// Set up the property trees so that UpdateDrawProperties will work in |
// CommitComplete below. |
- LayerImplList list; |
+ RenderSurfaceList list; |
LayerTreeHostCommon::CalcDrawPropsImplInputsForTesting inputs( |
root, gfx::Size(50, 50), &list); |
LayerTreeHostCommon::CalculateDrawPropertiesForTesting(&inputs); |
@@ -8052,7 +8052,7 @@ TEST_F(LayerTreeHostImplTest, RootLayerDoesntCreateExtraSurface) { |
TestFrameData frame; |
EXPECT_EQ(DRAW_SUCCESS, host_impl_->PrepareToDraw(&frame)); |
- EXPECT_EQ(1u, frame.render_surface_layer_list->size()); |
+ EXPECT_EQ(1u, frame.render_surface_list->size()); |
EXPECT_EQ(1u, frame.render_passes.size()); |
host_impl_->DidDrawAllLayers(frame); |
} |
@@ -8437,7 +8437,7 @@ TEST_F(LayerTreeHostImplTest, FarAwayQuadsDontNeedAA) { |
bool update_lcd_text = false; |
host_impl_->active_tree()->UpdateDrawProperties(update_lcd_text); |
- ASSERT_EQ(1u, host_impl_->active_tree()->RenderSurfaceLayerList().size()); |
+ ASSERT_EQ(1u, host_impl_->active_tree()->GetRenderSurfaceList().size()); |
TestFrameData frame; |
EXPECT_EQ(DRAW_SUCCESS, host_impl_->PrepareToDraw(&frame)); |