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/common/wm/panels/panel_layout_manager.h" | 5 #include "ash/wm/panels/panel_layout_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <map> | 8 #include <map> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "ash/common/shelf/wm_shelf.h" | |
12 #include "ash/common/shelf/wm_shelf_util.h" | |
13 #include "ash/common/wm/overview/window_selector_controller.h" | |
14 #include "ash/common/wm/window_animation_types.h" | |
15 #include "ash/common/wm/window_parenting_utils.h" | |
16 #include "ash/common/wm/window_state.h" | |
17 #include "ash/common/wm_shell.h" | |
18 #include "ash/common/wm_window.h" | |
19 #include "ash/public/cpp/shell_window_ids.h" | 11 #include "ash/public/cpp/shell_window_ids.h" |
20 #include "ash/public/cpp/window_properties.h" | 12 #include "ash/public/cpp/window_properties.h" |
21 #include "ash/root_window_controller.h" | 13 #include "ash/root_window_controller.h" |
| 14 #include "ash/shelf/wm_shelf.h" |
| 15 #include "ash/shelf/wm_shelf_util.h" |
| 16 #include "ash/wm/overview/window_selector_controller.h" |
| 17 #include "ash/wm/window_animation_types.h" |
| 18 #include "ash/wm/window_parenting_utils.h" |
22 #include "ash/wm/window_properties.h" | 19 #include "ash/wm/window_properties.h" |
| 20 #include "ash/wm/window_state.h" |
| 21 #include "ash/wm_shell.h" |
| 22 #include "ash/wm_window.h" |
23 #include "base/auto_reset.h" | 23 #include "base/auto_reset.h" |
24 #include "third_party/skia/include/core/SkColor.h" | 24 #include "third_party/skia/include/core/SkColor.h" |
25 #include "third_party/skia/include/core/SkPath.h" | 25 #include "third_party/skia/include/core/SkPath.h" |
26 #include "ui/compositor/scoped_layer_animation_settings.h" | 26 #include "ui/compositor/scoped_layer_animation_settings.h" |
27 #include "ui/gfx/canvas.h" | 27 #include "ui/gfx/canvas.h" |
28 #include "ui/gfx/geometry/rect.h" | 28 #include "ui/gfx/geometry/rect.h" |
29 #include "ui/gfx/geometry/vector2d.h" | 29 #include "ui/gfx/geometry/vector2d.h" |
30 #include "ui/views/background.h" | 30 #include "ui/views/background.h" |
31 #include "ui/views/widget/widget.h" | 31 #include "ui/views/widget/widget.h" |
32 | 32 |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
920 } | 920 } |
921 } | 921 } |
922 // This bounds change will have caused a change to the Shelf which does not | 922 // This bounds change will have caused a change to the Shelf which does not |
923 // propogate automatically to this class, so manually recalculate bounds. | 923 // propogate automatically to this class, so manually recalculate bounds. |
924 OnWindowResized(); | 924 OnWindowResized(); |
925 } | 925 } |
926 | 926 |
927 void PanelLayoutManager::OnKeyboardClosed() {} | 927 void PanelLayoutManager::OnKeyboardClosed() {} |
928 | 928 |
929 } // namespace ash | 929 } // namespace ash |
OLD | NEW |