| 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_layout_manager.h" | 5 #include "ash/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/display/display_manager.h" | 10 #include "ash/display/display_manager.h" |
| 11 #include "ash/root_window_controller.h" | 11 #include "ash/root_window_controller.h" |
| 12 #include "ash/screen_util.h" | 12 #include "ash/screen_util.h" |
| 13 #include "ash/session/session_state_delegate.h" | 13 #include "ash/session/session_state_delegate.h" |
| 14 #include "ash/shelf/shelf.h" | 14 #include "ash/shelf/shelf.h" |
| 15 #include "ash/shelf/shelf_layout_manager.h" | 15 #include "ash/shelf/shelf_layout_manager.h" |
| 16 #include "ash/shell.h" | 16 #include "ash/shell.h" |
| 17 #include "ash/shell_observer.h" | 17 #include "ash/shell_observer.h" |
| 18 #include "ash/shell_window_ids.h" | 18 #include "ash/shell_window_ids.h" |
| 19 #include "ash/test/ash_test_base.h" | 19 #include "ash/test/ash_test_base.h" |
| 20 #include "ash/test/display_manager_test_api.h" | 20 #include "ash/test/display_manager_test_api.h" |
| 21 #include "ash/wm/common/wm_event.h" | 21 #include "ash/wm/common/wm_event.h" |
| 22 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h" | 22 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h" |
| 23 #include "ash/wm/window_state.h" | 23 #include "ash/wm/window_state.h" |
| 24 #include "ash/wm/window_state_aura.h" |
| 24 #include "ash/wm/window_util.h" | 25 #include "ash/wm/window_util.h" |
| 25 #include "ash/wm/workspace/workspace_window_resizer.h" | 26 #include "ash/wm/workspace/workspace_window_resizer.h" |
| 26 #include "base/compiler_specific.h" | 27 #include "base/compiler_specific.h" |
| 27 #include "ui/aura/client/aura_constants.h" | 28 #include "ui/aura/client/aura_constants.h" |
| 28 #include "ui/aura/test/test_windows.h" | 29 #include "ui/aura/test/test_windows.h" |
| 29 #include "ui/aura/window.h" | 30 #include "ui/aura/window.h" |
| 30 #include "ui/aura/window_event_dispatcher.h" | 31 #include "ui/aura/window_event_dispatcher.h" |
| 31 #include "ui/base/ui_base_types.h" | 32 #include "ui/base/ui_base_types.h" |
| 32 #include "ui/display/manager/display_layout.h" | 33 #include "ui/display/manager/display_layout.h" |
| 33 #include "ui/gfx/geometry/insets.h" | 34 #include "ui/gfx/geometry/insets.h" |
| (...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 EXPECT_EQ(gfx::Rect(50, | 1147 EXPECT_EQ(gfx::Rect(50, |
| 1147 keyboard_bounds.y() - keyboard_bounds.height()/2, | 1148 keyboard_bounds.y() - keyboard_bounds.height()/2, |
| 1148 occluded_window_bounds.width(), | 1149 occluded_window_bounds.width(), |
| 1149 occluded_window_bounds.height()).ToString(), | 1150 occluded_window_bounds.height()).ToString(), |
| 1150 window->bounds().ToString()); | 1151 window->bounds().ToString()); |
| 1151 HideKeyboard(); | 1152 HideKeyboard(); |
| 1152 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString()); | 1153 EXPECT_EQ(occluded_window_bounds.ToString(), window->bounds().ToString()); |
| 1153 } | 1154 } |
| 1154 | 1155 |
| 1155 } // namespace ash | 1156 } // namespace ash |
| OLD | NEW |