Index: cc/trees/layer_tree_host_unittest_damage.cc |
diff --git a/cc/trees/layer_tree_host_unittest_damage.cc b/cc/trees/layer_tree_host_unittest_damage.cc |
index e2cccb5c801513678c9444641f89e8059ec93460..20667bf54a209717917cc33b986658f9ed6ad008 100644 |
--- a/cc/trees/layer_tree_host_unittest_damage.cc |
+++ b/cc/trees/layer_tree_host_unittest_damage.cc |
@@ -358,9 +358,9 @@ class LayerTreeHostScrollbarDamageTest : public LayerTreeHostDamageTest { |
root_layer->AddChild(scrollbar_layer); |
gfx::RectF content_rect(content_layer->position(), |
- content_layer->bounds()); |
+ gfx::SizeF(content_layer->bounds())); |
gfx::RectF scrollbar_rect(scrollbar_layer->position(), |
- scrollbar_layer->bounds()); |
+ gfx::SizeF(scrollbar_layer->bounds())); |
EXPECT_FALSE(content_rect.Intersects(scrollbar_rect)); |
LayerTreeHostDamageTest::SetupTree(); |