| Index: cc/trees/layer_tree_host_unittest_animation_timelines.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_animation_timelines.cc b/cc/trees/layer_tree_host_unittest_animation_timelines.cc
|
| index f1b3e2fa17309e3d95518d8642d0326d97f7f966..acb8197e816d550529bcc475100d9adef1c8a288 100644
|
| --- a/cc/trees/layer_tree_host_unittest_animation_timelines.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_animation_timelines.cc
|
| @@ -919,10 +919,9 @@ class LayerTreeHostTimelinesTestRemoveAnimation
|
| return;
|
| gfx::Transform expected_transform;
|
| expected_transform.Translate(10.f, 10.f);
|
| - EXPECT_EQ(expected_transform, host_impl->active_tree()
|
| - ->root_layer()
|
| - ->children()[0]
|
| - ->draw_transform());
|
| + EXPECT_EQ(
|
| + expected_transform,
|
| + host_impl->active_tree()->root_layer()->children()[0]->DrawTransform());
|
| EndTest();
|
| }
|
|
|
| @@ -979,7 +978,7 @@ class LayerTreeHostTimelinesTestAnimationFinishesDuringCommit
|
| expected_transform.Translate(5.f, 5.f);
|
| LayerImpl* layer_impl =
|
| host_impl->sync_tree()->root_layer()->children()[0].get();
|
| - EXPECT_EQ(expected_transform, layer_impl->draw_transform());
|
| + EXPECT_EQ(expected_transform, layer_impl->DrawTransform());
|
| EndTest();
|
| break;
|
| }
|
|
|