| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/wm/workspace/workspace_window_resizer.h" | 5 #include "ash/wm/workspace/workspace_window_resizer.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/metrics/user_metrics_recorder.h" | 12 #include "ash/metrics/user_metrics_recorder.h" |
| 13 #include "ash/shell_window_ids.h" | 13 #include "ash/shell_window_ids.h" |
| 14 #include "ash/wm/common/default_window_resizer.h" |
| 14 #include "ash/wm/common/dock/docked_window_layout_manager.h" | 15 #include "ash/wm/common/dock/docked_window_layout_manager.h" |
| 15 #include "ash/wm/common/window_positioning_utils.h" | 16 #include "ash/wm/common/window_positioning_utils.h" |
| 16 #include "ash/wm/common/window_state.h" | 17 #include "ash/wm/common/window_state.h" |
| 17 #include "ash/wm/common/wm_event.h" | 18 #include "ash/wm/common/wm_event.h" |
| 18 #include "ash/wm/common/wm_globals.h" | 19 #include "ash/wm/common/wm_globals.h" |
| 19 #include "ash/wm/common/wm_root_window_controller.h" | 20 #include "ash/wm/common/wm_root_window_controller.h" |
| 20 #include "ash/wm/common/wm_screen_util.h" | 21 #include "ash/wm/common/wm_screen_util.h" |
| 21 #include "ash/wm/common/wm_window.h" | 22 #include "ash/wm/common/wm_window.h" |
| 22 #include "ash/wm/default_window_resizer.h" | |
| 23 #include "ash/wm/dock/docked_window_resizer.h" | 23 #include "ash/wm/dock/docked_window_resizer.h" |
| 24 #include "ash/wm/drag_window_resizer.h" | 24 #include "ash/wm/drag_window_resizer.h" |
| 25 #include "ash/wm/panels/panel_window_resizer.h" | 25 #include "ash/wm/panels/panel_window_resizer.h" |
| 26 #include "ash/wm/workspace/phantom_window_controller.h" | 26 #include "ash/wm/workspace/phantom_window_controller.h" |
| 27 #include "ash/wm/workspace/two_step_edge_cycler.h" | 27 #include "ash/wm/workspace/two_step_edge_cycler.h" |
| 28 #include "base/memory/ptr_util.h" | 28 #include "base/memory/ptr_util.h" |
| 29 #include "base/memory/weak_ptr.h" | 29 #include "base/memory/weak_ptr.h" |
| 30 #include "ui/base/hit_test.h" | 30 #include "ui/base/hit_test.h" |
| 31 #include "ui/compositor/layer.h" | 31 #include "ui/compositor/layer.h" |
| 32 #include "ui/gfx/screen.h" | 32 #include "ui/gfx/screen.h" |
| (...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 DCHECK(snapped_type == wm::WINDOW_STATE_TYPE_LEFT_SNAPPED || | 1033 DCHECK(snapped_type == wm::WINDOW_STATE_TYPE_LEFT_SNAPPED || |
| 1034 snapped_type == wm::WINDOW_STATE_TYPE_RIGHT_SNAPPED); | 1034 snapped_type == wm::WINDOW_STATE_TYPE_RIGHT_SNAPPED); |
| 1035 gfx::Rect snapped_bounds = wm::GetDisplayWorkAreaBoundsInParent(GetTarget()); | 1035 gfx::Rect snapped_bounds = wm::GetDisplayWorkAreaBoundsInParent(GetTarget()); |
| 1036 if (snapped_type == wm::WINDOW_STATE_TYPE_RIGHT_SNAPPED) | 1036 if (snapped_type == wm::WINDOW_STATE_TYPE_RIGHT_SNAPPED) |
| 1037 snapped_bounds.set_x(snapped_bounds.right() - bounds_in_parent.width()); | 1037 snapped_bounds.set_x(snapped_bounds.right() - bounds_in_parent.width()); |
| 1038 snapped_bounds.set_width(bounds_in_parent.width()); | 1038 snapped_bounds.set_width(bounds_in_parent.width()); |
| 1039 return bounds_in_parent == snapped_bounds; | 1039 return bounds_in_parent == snapped_bounds; |
| 1040 } | 1040 } |
| 1041 | 1041 |
| 1042 } // namespace ash | 1042 } // namespace ash |
| OLD | NEW |