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/common/workspace/workspace_layout_manager.h" | 5 #include "ash/common/wm/workspace/workspace_layout_manager.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "ash/wm/common/fullscreen_window_finder.h" | 10 #include "ash/common/wm/fullscreen_window_finder.h" |
11 #include "ash/wm/common/window_state.h" | 11 #include "ash/common/wm/window_state.h" |
12 #include "ash/wm/common/wm_event.h" | 12 #include "ash/common/wm/wm_event.h" |
13 #include "ash/wm/common/wm_root_window_controller_observer.h" | 13 #include "ash/common/wm/wm_root_window_controller_observer.h" |
14 #include "ash/wm/common/wm_screen_util.h" | 14 #include "ash/common/wm/wm_screen_util.h" |
15 #include "components/mus/public/cpp/tests/test_window.h" | 15 #include "components/mus/public/cpp/tests/test_window.h" |
16 #include "mash/wm/bridge/wm_root_window_controller_mus.h" | 16 #include "mash/wm/bridge/wm_root_window_controller_mus.h" |
17 #include "mash/wm/bridge/wm_window_mus.h" | 17 #include "mash/wm/bridge/wm_window_mus.h" |
18 #include "mash/wm/test/wm_test_base.h" | 18 #include "mash/wm/test/wm_test_base.h" |
19 #include "ui/display/display.h" | 19 #include "ui/display/display.h" |
20 | 20 |
21 namespace mash { | 21 namespace mash { |
22 namespace wm { | 22 namespace wm { |
23 namespace { | 23 namespace { |
24 | 24 |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 occluded_window_bounds.width(), | 1098 occluded_window_bounds.width(), |
1099 occluded_window_bounds.height()).ToString(), | 1099 occluded_window_bounds.height()).ToString(), |
1100 window->bounds().ToString()); | 1100 window->bounds().ToString()); |
1101 HideKeyboard(); | 1101 HideKeyboard(); |
1102 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString()); | 1102 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString()); |
1103 } | 1103 } |
1104 */ | 1104 */ |
1105 | 1105 |
1106 } // namespace wm | 1106 } // namespace wm |
1107 } // namespace mash | 1107 } // namespace mash |
OLD | NEW |