| Index: ui/accessibility/ax_tree_combiner_unittest.cc
|
| diff --git a/ui/accessibility/ax_tree_combiner_unittest.cc b/ui/accessibility/ax_tree_combiner_unittest.cc
|
| index 49f2050ce0f895874f236e0cdf48f5764243db46..49fbccc988f976d27bcd579cab78d9a6f65b6087 100644
|
| --- a/ui/accessibility/ax_tree_combiner_unittest.cc
|
| +++ b/ui/accessibility/ax_tree_combiner_unittest.cc
|
| @@ -160,7 +160,7 @@ TEST(CombineAXTreesTest, Coordinates) {
|
| parent_tree.nodes[0].child_ids.push_back(3);
|
| parent_tree.nodes[1].id = 2;
|
| parent_tree.nodes[1].role = AX_ROLE_BUTTON;
|
| - parent_tree.nodes[1].location = gfx::Rect(50, 10, 200, 100);
|
| + parent_tree.nodes[1].location = gfx::RectF(50, 10, 200, 100);
|
| parent_tree.nodes[2].id = 3;
|
| parent_tree.nodes[2].role = AX_ROLE_IFRAME;
|
| parent_tree.nodes[2].AddIntAttribute(AX_ATTR_CHILD_TREE_ID, 2);
|
| @@ -180,7 +180,7 @@ TEST(CombineAXTreesTest, Coordinates) {
|
|
|
| child_tree.nodes[1].id = 2;
|
| child_tree.nodes[1].role = AX_ROLE_BUTTON;
|
| - child_tree.nodes[1].location = gfx::Rect(50, 10, 200, 100);
|
| + child_tree.nodes[1].location = gfx::RectF(50, 10, 200, 100);
|
|
|
| AXTreeCombiner combiner;
|
| combiner.AddTree(parent_tree, true);
|
|
|