| Index: cc/trees/layer_tree_host_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
|
| index bf162ae3270d98b2b90b7cf957e0f7e522e76e83..d1aa0ae35deb1a099d7717439dc5dcbdffe2b7c4 100644
|
| --- a/cc/trees/layer_tree_host_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_unittest.cc
|
| @@ -6107,14 +6107,14 @@ class LayerTreeHostTestCrispUpAfterPinchEnds : public LayerTreeHostTest {
|
| // On frame 3, we will have a lower res tile complete for the pinch-out
|
| // gesture even though it's not displayed. We wait for it here to prevent
|
| // flakiness.
|
| - EXPECT_EQ(0.75f, tile->contents_scale_key());
|
| + EXPECT_EQ(0.75f, tile->contents_scale());
|
| PostNextAfterDraw(host_impl);
|
| }
|
| // On frame_ == 4, we are preventing texture uploads from completing,
|
| // so this verifies they are not completing before frame_ == 5.
|
| // Flaky failures here indicate we're failing to prevent uploads from
|
| // completing.
|
| - EXPECT_NE(4, frame_) << tile->contents_scale_key();
|
| + EXPECT_NE(4, frame_) << tile->contents_scale();
|
| }
|
|
|
| void AfterTest() override {}
|
|
|