| Index: ash/wm/toplevel_window_event_handler_unittest.cc
|
| diff --git a/ash/wm/toplevel_window_event_handler_unittest.cc b/ash/wm/toplevel_window_event_handler_unittest.cc
|
| index c84f8b3f122fceb1fbfb3738a84915d365a58616..17f0c03cdaafc54a84819bdbd96bf18b1d8e9859 100644
|
| --- a/ash/wm/toplevel_window_event_handler_unittest.cc
|
| +++ b/ash/wm/toplevel_window_event_handler_unittest.cc
|
| @@ -392,7 +392,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
|
| // Get the expected snapped bounds before snapping.
|
| internal::SnapSizer sizer(target.get(), location,
|
| internal::SnapSizer::RIGHT_EDGE,
|
| - internal::SnapSizer::OTHER_INPUT);
|
| + internal::SnapSizer::STEP_NO);
|
| gfx::Rect snapped_bounds = sizer.GetSnapBounds(target->bounds());
|
|
|
| end.Offset(100, 0);
|
| @@ -413,7 +413,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDrag) {
|
| // Get the expected snapped bounds before snapping.
|
| internal::SnapSizer sizer(target.get(), location,
|
| internal::SnapSizer::LEFT_EDGE,
|
| - internal::SnapSizer::OTHER_INPUT);
|
| + internal::SnapSizer::STEP_NO);
|
| gfx::Rect snapped_bounds = sizer.GetSnapBounds(target->bounds());
|
| end = location = target->GetBoundsInRootWindow().CenterPoint();
|
| end.Offset(-100, 0);
|
| @@ -532,7 +532,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragForUnresizableWindow) {
|
| // Get the expected snapped bounds before the gesture.
|
| internal::SnapSizer sizer(target.get(), location,
|
| internal::SnapSizer::RIGHT_EDGE,
|
| - internal::SnapSizer::OTHER_INPUT);
|
| + internal::SnapSizer::STEP_NO);
|
| gfx::Rect snapped_bounds = sizer.GetSnapBounds(target->bounds());
|
|
|
| end.Offset(100, 0);
|
| @@ -557,7 +557,7 @@ TEST_F(ToplevelWindowEventHandlerTest, GestureDragForUnresizableWindow) {
|
| // Get the expected snapped bounds before the gesture.
|
| internal::SnapSizer sizer(target.get(), location,
|
| internal::SnapSizer::LEFT_EDGE,
|
| - internal::SnapSizer::OTHER_INPUT);
|
| + internal::SnapSizer::STEP_NO);
|
| gfx::Rect snapped_bounds = sizer.GetSnapBounds(target->bounds());
|
| end = location = target->GetBoundsInRootWindow().CenterPoint();
|
| end.Offset(-100, 0);
|
|
|