| Index: ui/aura/window_unittest.cc
|
| diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
|
| index 2c44d3c5d1ebd11eeefec6a3621a37cab76a778e..aecf30e05b39f3137e62e1462956beadfdc2aa29 100644
|
| --- a/ui/aura/window_unittest.cc
|
| +++ b/ui/aura/window_unittest.cc
|
| @@ -594,7 +594,8 @@ TEST_F(WindowTest, GetEventHandlerForPointWithOverride) {
|
|
|
| // We can override the hit test bounds of the parent to make the parent grab
|
| // events along that edge.
|
| - parent->set_hit_test_bounds_override_inner(gfx::Insets(1, 1, 1, 1));
|
| + parent->SetHitTestBoundsOverrideInner(gfx::Insets(1, 1, 1, 1),
|
| + gfx::Insets(1, 1, 1, 1));
|
| EXPECT_EQ(parent.get(), parent->GetEventHandlerForPoint(gfx::Point(0, 0)));
|
| EXPECT_EQ(child.get(), parent->GetEventHandlerForPoint(gfx::Point(1, 1)));
|
| }
|
|
|