| OLD | NEW | 
|    1 // Copyright 2015 The Chromium Authors. All rights reserved. |    1 // Copyright 2015 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #include "ash/display/extended_mouse_warp_controller.h" |    5 #include "ash/display/extended_mouse_warp_controller.h" | 
|    6  |    6  | 
|    7 #include <cmath> |    7 #include <cmath> | 
|    8  |    8  | 
|    9 #include "ash/display/display_util.h" |    9 #include "ash/display/display_util.h" | 
|   10 #include "ash/display/shared_display_edge_indicator.h" |   10 #include "ash/display/shared_display_edge_indicator.h" | 
|   11 #include "ash/display/window_tree_host_manager.h" |   11 #include "ash/display/window_tree_host_manager.h" | 
|   12 #include "ash/root_window_controller.h" |   12 #include "ash/root_window_controller.h" | 
|   13 #include "ash/shell.h" |   13 #include "ash/shell.h" | 
|   14 #include "base/memory/ptr_util.h" |   14 #include "base/memory/ptr_util.h" | 
|   15 #include "ui/aura/window.h" |   15 #include "ui/aura/window.h" | 
|   16 #include "ui/display/manager/display_layout.h" |   16 #include "ui/display/display_layout.h" | 
|   17 #include "ui/display/manager/display_manager.h" |   17 #include "ui/display/manager/display_manager.h" | 
|   18 #include "ui/display/manager/display_manager_utilities.h" |   18 #include "ui/display/manager/display_manager_utilities.h" | 
|   19 #include "ui/display/screen.h" |   19 #include "ui/display/screen.h" | 
|   20 #include "ui/display/types/display_constants.h" |   20 #include "ui/display/types/display_constants.h" | 
|   21 #include "ui/events/event_utils.h" |   21 #include "ui/events/event_utils.h" | 
|   22 #include "ui/wm/core/coordinate_conversion.h" |   22 #include "ui/wm/core/coordinate_conversion.h" | 
|   23  |   23  | 
|   24 namespace ash { |   24 namespace ash { | 
|   25  |   25  | 
|   26 namespace { |   26 namespace { | 
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  217     if (drag_source_id == a.id()) |  217     if (drag_source_id == a.id()) | 
|  218       AdjustSourceEdgeBounds(a.bounds(), snap_barrier, &a_edge); |  218       AdjustSourceEdgeBounds(a.bounds(), snap_barrier, &a_edge); | 
|  219     else if (drag_source_id == b.id()) |  219     else if (drag_source_id == b.id()) | 
|  220       AdjustSourceEdgeBounds(b.bounds(), snap_barrier, &b_edge); |  220       AdjustSourceEdgeBounds(b.bounds(), snap_barrier, &b_edge); | 
|  221   } |  221   } | 
|  222  |  222  | 
|  223   return base::MakeUnique<WarpRegion>(a.id(), b.id(), a_edge, b_edge); |  223   return base::MakeUnique<WarpRegion>(a.id(), b.id(), a_edge, b_edge); | 
|  224 } |  224 } | 
|  225  |  225  | 
|  226 }  // namespace ash |  226 }  // namespace ash | 
| OLD | NEW |