diff options
Diffstat (limited to 'content/renderer/paint_aggregator_unittest.cc')
-rw-r--r-- | content/renderer/paint_aggregator_unittest.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/content/renderer/paint_aggregator_unittest.cc b/content/renderer/paint_aggregator_unittest.cc index a651f9e..7261822 100644 --- a/content/renderer/paint_aggregator_unittest.cc +++ b/content/renderer/paint_aggregator_unittest.cc @@ -37,7 +37,8 @@ TEST(PaintAggregator, DoubleDisjointInvalidation) { greg.InvalidateRect(r1); greg.InvalidateRect(r2); - gfx::Rect expected_bounds = r1.Union(r2); + gfx::Rect expected_bounds = r1; + expected_bounds.Union(r2); EXPECT_TRUE(greg.HasPendingUpdate()); PaintAggregator::PendingUpdate update; @@ -61,7 +62,8 @@ TEST(PaintAggregator, DisjointInvalidationsCombined) { greg.InvalidateRect(r1); greg.InvalidateRect(r2); - gfx::Rect expected_bounds = r1.Union(r2); + gfx::Rect expected_bounds = r1; + expected_bounds.Union(r2); EXPECT_TRUE(greg.HasPendingUpdate()); PaintAggregator::PendingUpdate update; @@ -277,7 +279,8 @@ TEST(PaintAggregator, OverlappingPaintBeforeScroll) { gfx::Rect scroll_rect(0, 0, 10, 10); greg.ScrollRect(2, 0, scroll_rect); - gfx::Rect expected_paint_rect = scroll_rect.Union(paint_rect); + gfx::Rect expected_paint_rect = scroll_rect; + expected_paint_rect.Union(paint_rect); EXPECT_TRUE(greg.HasPendingUpdate()); PaintAggregator::PendingUpdate update; @@ -298,7 +301,8 @@ TEST(PaintAggregator, OverlappingPaintAfterScroll) { gfx::Rect paint_rect(4, 4, 10, 2); greg.InvalidateRect(paint_rect); - gfx::Rect expected_paint_rect = scroll_rect.Union(paint_rect); + gfx::Rect expected_paint_rect = scroll_rect; + expected_paint_rect.Union(paint_rect); EXPECT_TRUE(greg.HasPendingUpdate()); PaintAggregator::PendingUpdate update; |