OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <algorithm> | 5 #include <algorithm> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "ash/accessibility_delegate.h" | 8 #include "ash/accessibility_delegate.h" |
9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
| 10 #include "ash/common/shell_window_ids.h" |
10 #include "ash/common/wm/panels/panel_layout_manager.h" | 11 #include "ash/common/wm/panels/panel_layout_manager.h" |
11 #include "ash/common/wm/window_state.h" | 12 #include "ash/common/wm/window_state.h" |
12 #include "ash/common/wm/wm_event.h" | 13 #include "ash/common/wm/wm_event.h" |
13 #include "ash/drag_drop/drag_drop_controller.h" | 14 #include "ash/drag_drop/drag_drop_controller.h" |
14 #include "ash/root_window_controller.h" | 15 #include "ash/root_window_controller.h" |
15 #include "ash/screen_util.h" | 16 #include "ash/screen_util.h" |
16 #include "ash/shelf/shelf.h" | 17 #include "ash/shelf/shelf.h" |
17 #include "ash/shelf/shelf_widget.h" | 18 #include "ash/shelf/shelf_widget.h" |
18 #include "ash/shell.h" | 19 #include "ash/shell.h" |
19 #include "ash/shell_window_ids.h" | |
20 #include "ash/test/ash_test_base.h" | 20 #include "ash/test/ash_test_base.h" |
21 #include "ash/test/display_manager_test_api.h" | 21 #include "ash/test/display_manager_test_api.h" |
22 #include "ash/test/shelf_test_api.h" | 22 #include "ash/test/shelf_test_api.h" |
23 #include "ash/test/shelf_view_test_api.h" | 23 #include "ash/test/shelf_view_test_api.h" |
24 #include "ash/test/shell_test_api.h" | 24 #include "ash/test/shell_test_api.h" |
25 #include "ash/test/test_shelf_delegate.h" | 25 #include "ash/test/test_shelf_delegate.h" |
26 #include "ash/wm/aura/wm_window_aura.h" | 26 #include "ash/wm/aura/wm_window_aura.h" |
27 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | 27 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
28 #include "ash/wm/mru_window_tracker.h" | 28 #include "ash/wm/mru_window_tracker.h" |
29 #include "ash/wm/overview/window_grid.h" | 29 #include "ash/wm/overview/window_grid.h" |
(...skipping 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1730 bounds.y()); | 1730 bounds.y()); |
1731 EXPECT_LE(transformed_rect.bottom(), bounds.bottom()); | 1731 EXPECT_LE(transformed_rect.bottom(), bounds.bottom()); |
1732 EXPECT_NEAR(transformed_rect.x() - bounds.x(), | 1732 EXPECT_NEAR(transformed_rect.x() - bounds.x(), |
1733 bounds.right() - transformed_rect.right(), 1); | 1733 bounds.right() - transformed_rect.right(), 1); |
1734 EXPECT_NEAR( | 1734 EXPECT_NEAR( |
1735 transformed_rect.y() + (int)(scale * inset) - header_height - bounds.y(), | 1735 transformed_rect.y() + (int)(scale * inset) - header_height - bounds.y(), |
1736 bounds.bottom() - transformed_rect.bottom(), 1); | 1736 bounds.bottom() - transformed_rect.bottom(), 1); |
1737 } | 1737 } |
1738 | 1738 |
1739 } // namespace ash | 1739 } // namespace ash |
OLD | NEW |