Index: ui/views/view_unittest.cc |
diff --git a/ui/views/view_unittest.cc b/ui/views/view_unittest.cc |
index 9d2ef3d8b6515938cded15f2da9e65f6cceca555..50d86f38dc9c3688ebb54c321d0fdd478c9374d0 100644 |
--- a/ui/views/view_unittest.cc |
+++ b/ui/views/view_unittest.cc |
@@ -3401,20 +3401,23 @@ TEST_F(ViewLayerTest, DontPaintChildrenWithLayers) { |
widget()->SetContentsView(content_view); |
content_view->SetPaintToLayer(true); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
GetRootLayer()->SchedulePaint(gfx::Rect(0, 0, 10, 10)); |
content_view->set_painted(false); |
// content_view no longer has a dirty rect. Paint from the root and make sure |
// PaintTrackingView isn't painted. |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_FALSE(content_view->painted()); |
// Make content_view have a dirty rect, paint the layers and make sure |
// PaintTrackingView is painted. |
content_view->layer()->SchedulePaint(gfx::Rect(0, 0, 10, 10)); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_TRUE(content_view->painted()); |
} |
@@ -3654,13 +3657,15 @@ TEST_F(ViewLayerTest, BoundsTreePaintUpdatesCullSet) { |
// Schedule a full-view paint to get everyone's rectangles updated. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Now we have test_view - v1 - v2. Damage to only test_view should only |
// return root_view and test_view. |
test_view->SchedulePaintInRect(gfx::Rect(0, 0, 1, 1)); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(2U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3668,7 +3673,8 @@ TEST_F(ViewLayerTest, BoundsTreePaintUpdatesCullSet) { |
// Damage to v1 only should only return root_view, test_view, and v1. |
test_view->SchedulePaintInRect(gfx::Rect(11, 16, 1, 1)); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(3U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3678,7 +3684,8 @@ TEST_F(ViewLayerTest, BoundsTreePaintUpdatesCullSet) { |
// on call to TestView::Paint(), along with the widget root view. |
test_view->SchedulePaintInRect(gfx::Rect(31, 49, 1, 1)); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(4U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3705,13 +3712,15 @@ TEST_F(ViewLayerTest, BoundsTreeWithRTL) { |
// Schedule a full-view paint to get everyone's rectangles updated. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Damage to the right side of the parent view should touch both child views. |
gfx::Rect rtl_damage(test_view->bounds().width() - 16, 18, 1, 1); |
test_view->SchedulePaintInRect(rtl_damage); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(4U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3723,7 +3732,8 @@ TEST_F(ViewLayerTest, BoundsTreeWithRTL) { |
gfx::Rect ltr_damage(16, 18, 1, 1); |
test_view->SchedulePaintInRect(ltr_damage); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(2U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3747,18 +3757,21 @@ TEST_F(ViewLayerTest, BoundsTreeSetBoundsChangesCullSet) { |
// Schedule a full-view paint to get everyone's rectangles updated. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Move v1 to a new origin out of the way of our next query. |
v1->SetBoundsRect(gfx::Rect(50, 60, 100, 101)); |
// The move will force a repaint. |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Schedule a paint with damage rect where v1 used to be. |
test_view->SchedulePaintInRect(gfx::Rect(5, 6, 10, 11)); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Should only have picked up root_view and test_view. |
EXPECT_EQ(2U, test_view->last_cull_set_.size()); |
@@ -3781,7 +3794,8 @@ TEST_F(ViewLayerTest, BoundsTreeLayerChangeMakesNewTree) { |
// Schedule a full-view paint to get everyone's rectangles updated. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Set v1 to paint to its own layer, it should remove itself from the |
// test_view heiarchy and no longer intersect with damage rects in that cull |
@@ -3791,7 +3805,8 @@ TEST_F(ViewLayerTest, BoundsTreeLayerChangeMakesNewTree) { |
// Schedule another full-view paint. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// v1 and v2 should no longer be present in the test_view cull_set. |
EXPECT_EQ(2U, test_view->last_cull_set_.size()); |
EXPECT_EQ(0U, test_view->last_cull_set_.count(v1)); |
@@ -3802,7 +3817,8 @@ TEST_F(ViewLayerTest, BoundsTreeLayerChangeMakesNewTree) { |
// Schedule another full-view paint. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// We should be back to the full cull set including v1 and v2. |
EXPECT_EQ(4U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
@@ -3826,7 +3842,8 @@ TEST_F(ViewLayerTest, BoundsTreeRemoveChildRemovesBounds) { |
// Schedule a full-view paint to get everyone's rectangles updated. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Now remove v1 from the root view. |
test_view->RemoveChildView(v1); |
@@ -3834,7 +3851,8 @@ TEST_F(ViewLayerTest, BoundsTreeRemoveChildRemovesBounds) { |
// Schedule another full-view paint. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// v1 and v2 should no longer be present in the test_view cull_set. |
EXPECT_EQ(2U, test_view->last_cull_set_.size()); |
EXPECT_EQ(0U, test_view->last_cull_set_.count(v1)); |
@@ -3865,7 +3883,8 @@ TEST_F(ViewLayerTest, BoundsTreeMoveViewMovesBounds) { |
// Schedule a full-view paint and ensure all views are present in the cull. |
test_view->SchedulePaintInRect(test_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
EXPECT_EQ(5U, test_view->last_cull_set_.size()); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(widget()->GetRootView())); |
EXPECT_EQ(1U, test_view->last_cull_set_.count(test_view)); |
@@ -3888,7 +3907,8 @@ TEST_F(ViewLayerTest, BoundsTreeMoveViewMovesBounds) { |
test_view->SchedulePaintInRect(test_view->bounds()); |
widget_view->SchedulePaintInRect(widget_view->bounds()); |
GetRootLayer()->GetCompositor()->ScheduleDraw(); |
- ui::DrawWaiterForTest::Wait(GetRootLayer()->GetCompositor()); |
+ ui::DrawWaiterForTest::WaitForCompositingEnded( |
+ GetRootLayer()->GetCompositor()); |
// Only v1 should be present in the first cull set. |
EXPECT_EQ(3U, test_view->last_cull_set_.size()); |