| Index: ash/wm/frame_border_hit_test_controller.cc
 | 
| diff --git a/ash/wm/frame_border_hit_test_controller.cc b/ash/wm/frame_border_hit_test_controller.cc
 | 
| index 0b730fbaf430d2bf2432f5a215f67213bc4d8e9b..f2cee9358764334a0af21218f0581d806840aba9 100644
 | 
| --- a/ash/wm/frame_border_hit_test_controller.cc
 | 
| +++ b/ash/wm/frame_border_hit_test_controller.cc
 | 
| @@ -21,16 +21,6 @@ namespace ash {
 | 
|  
 | 
|  FrameBorderHitTestController::FrameBorderHitTestController(views::Widget* frame)
 | 
|      : frame_window_(frame->GetNativeWindow()) {
 | 
| -  gfx::Insets mouse_outer_insets(-kResizeOutsideBoundsSize,
 | 
| -                                 -kResizeOutsideBoundsSize,
 | 
| -                                 -kResizeOutsideBoundsSize,
 | 
| -                                 -kResizeOutsideBoundsSize);
 | 
| -  gfx::Insets touch_outer_insets = mouse_outer_insets.Scale(
 | 
| -      kResizeOutsideBoundsScaleForTouch);
 | 
| -  // Ensure we get resize cursors for a few pixels outside our bounds.
 | 
| -  frame_window_->SetHitTestBoundsOverrideOuter(mouse_outer_insets,
 | 
| -                                               touch_outer_insets);
 | 
| -
 | 
|    frame_window_->set_event_targeter(scoped_ptr<ui::EventTargeter>(
 | 
|        new ResizeHandleWindowTargeter(frame_window_, NULL)));
 | 
|  }
 | 
| 
 |