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/drag_window_resizer.h" | 5 #include "ash/wm/drag_window_resizer.h" |
6 | 6 |
7 #include "ash/display/mouse_cursor_event_filter.h" | 7 #include "ash/display/mouse_cursor_event_filter.h" |
8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
9 #include "ash/shelf/shelf_layout_manager.h" | 9 #include "ash/shelf/shelf_layout_manager.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
11 #include "ash/shell_window_ids.h" | 11 #include "ash/shell_window_ids.h" |
12 #include "ash/test/ash_test_base.h" | 12 #include "ash/test/ash_test_base.h" |
13 #include "ash/test/cursor_manager_test_api.h" | 13 #include "ash/test/cursor_manager_test_api.h" |
14 #include "ash/wm/drag_window_controller.h" | 14 #include "ash/wm/drag_window_controller.h" |
15 #include "ash/wm/window_util.h" | 15 #include "ash/wm/window_util.h" |
16 #include "base/strings/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
17 #include "base/strings/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
18 #include "ui/aura/client/aura_constants.h" | 18 #include "ui/aura/client/aura_constants.h" |
19 #include "ui/aura/test/test_window_delegate.h" | 19 #include "ui/aura/test/test_window_delegate.h" |
20 #include "ui/aura/window_event_dispatcher.h" | 20 #include "ui/aura/window_event_dispatcher.h" |
21 #include "ui/base/hit_test.h" | 21 #include "ui/base/hit_test.h" |
22 #include "ui/base/ui_base_types.h" | 22 #include "ui/base/ui_base_types.h" |
23 #include "ui/compositor/layer_tree_owner.h" | 23 #include "ui/compositor/layer_tree_owner.h" |
24 #include "ui/gfx/insets.h" | 24 #include "ui/gfx/insets.h" |
25 #include "ui/gfx/screen.h" | 25 #include "ui/gfx/screen.h" |
26 #include "ui/views/corewm/window_util.h" | |
27 #include "ui/views/widget/widget.h" | 26 #include "ui/views/widget/widget.h" |
| 27 #include "ui/wm/core/window_util.h" |
28 | 28 |
29 namespace ash { | 29 namespace ash { |
30 namespace internal { | 30 namespace internal { |
31 namespace { | 31 namespace { |
32 | 32 |
33 const int kRootHeight = 600; | 33 const int kRootHeight = 600; |
34 | 34 |
35 } // namespace | 35 } // namespace |
36 | 36 |
37 class DragWindowResizerTest : public test::AshTestBase { | 37 class DragWindowResizerTest : public test::AshTestBase { |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 ASSERT_TRUE(resizer.get()); | 628 ASSERT_TRUE(resizer.get()); |
629 resizer->Drag(CalculateDragPoint(*resizer, 399, 200), 0); | 629 resizer->Drag(CalculateDragPoint(*resizer, 399, 200), 0); |
630 EXPECT_TRUE(WarpMouseCursorIfNecessary(root_windows[0], | 630 EXPECT_TRUE(WarpMouseCursorIfNecessary(root_windows[0], |
631 gfx::Point(399, 200))); | 631 gfx::Point(399, 200))); |
632 resizer->CompleteDrag(); | 632 resizer->CompleteDrag(); |
633 } | 633 } |
634 } | 634 } |
635 | 635 |
636 } // namespace internal | 636 } // namespace internal |
637 } // namespace ash | 637 } // namespace ash |
OLD | NEW |