OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "ash/common/wm/panels/panel_window_resizer.h" | 5 #include "ash/wm/panels/panel_window_resizer.h" |
6 | 6 |
7 #include "ash/common/shelf/shelf_layout_manager.h" | |
8 #include "ash/common/shelf/shelf_model.h" | |
9 #include "ash/common/shelf/shelf_widget.h" | |
10 #include "ash/common/shelf/wm_shelf.h" | |
11 #include "ash/common/test/test_shelf_delegate.h" | |
12 #include "ash/common/wm/window_state.h" | |
13 #include "ash/common/wm/wm_event.h" | |
14 #include "ash/common/wm_shell.h" | |
15 #include "ash/common/wm_window.h" | |
16 #include "ash/public/cpp/shelf_types.h" | 7 #include "ash/public/cpp/shelf_types.h" |
17 #include "ash/public/cpp/shell_window_ids.h" | 8 #include "ash/public/cpp/shell_window_ids.h" |
18 #include "ash/public/cpp/window_properties.h" | 9 #include "ash/public/cpp/window_properties.h" |
19 #include "ash/root_window_controller.h" | 10 #include "ash/root_window_controller.h" |
| 11 #include "ash/shelf/shelf_layout_manager.h" |
| 12 #include "ash/shelf/shelf_model.h" |
| 13 #include "ash/shelf/shelf_widget.h" |
| 14 #include "ash/shelf/wm_shelf.h" |
20 #include "ash/shell.h" | 15 #include "ash/shell.h" |
21 #include "ash/test/ash_test_base.h" | 16 #include "ash/test/ash_test_base.h" |
22 #include "ash/test/cursor_manager_test_api.h" | 17 #include "ash/test/cursor_manager_test_api.h" |
| 18 #include "ash/test/test_shelf_delegate.h" |
23 #include "ash/wm/drag_window_resizer.h" | 19 #include "ash/wm/drag_window_resizer.h" |
24 #include "ash/wm/window_properties.h" | 20 #include "ash/wm/window_properties.h" |
| 21 #include "ash/wm/window_state.h" |
25 #include "ash/wm/window_state_aura.h" | 22 #include "ash/wm/window_state_aura.h" |
| 23 #include "ash/wm/wm_event.h" |
| 24 #include "ash/wm_shell.h" |
| 25 #include "ash/wm_window.h" |
26 #include "base/i18n/rtl.h" | 26 #include "base/i18n/rtl.h" |
27 #include "ui/aura/client/aura_constants.h" | 27 #include "ui/aura/client/aura_constants.h" |
28 #include "ui/aura/window_event_dispatcher.h" | 28 #include "ui/aura/window_event_dispatcher.h" |
29 #include "ui/base/hit_test.h" | 29 #include "ui/base/hit_test.h" |
30 #include "ui/base/ui_base_types.h" | 30 #include "ui/base/ui_base_types.h" |
31 #include "ui/views/widget/widget.h" | 31 #include "ui/views/widget/widget.h" |
32 #include "ui/wm/core/window_util.h" | 32 #include "ui/wm/core/window_util.h" |
33 | 33 |
34 namespace ash { | 34 namespace ash { |
35 | 35 |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 INSTANTIATE_TEST_CASE_P(LtrRtl, | 515 INSTANTIATE_TEST_CASE_P(LtrRtl, |
516 PanelWindowResizerTextDirectionTest, | 516 PanelWindowResizerTextDirectionTest, |
517 testing::Bool()); | 517 testing::Bool()); |
518 INSTANTIATE_TEST_CASE_P(NormalPanelPopup, | 518 INSTANTIATE_TEST_CASE_P(NormalPanelPopup, |
519 PanelWindowResizerTransientTest, | 519 PanelWindowResizerTransientTest, |
520 testing::Values(ui::wm::WINDOW_TYPE_NORMAL, | 520 testing::Values(ui::wm::WINDOW_TYPE_NORMAL, |
521 ui::wm::WINDOW_TYPE_PANEL, | 521 ui::wm::WINDOW_TYPE_PANEL, |
522 ui::wm::WINDOW_TYPE_POPUP)); | 522 ui::wm::WINDOW_TYPE_POPUP)); |
523 | 523 |
524 } // namespace ash | 524 } // namespace ash |
OLD | NEW |