| 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 "ash/display/display_controller.h" | 7 #include "ash/display/display_controller.h" |
| 8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
| 9 #include "ash/screen_ash.h" | 9 #include "ash/screen_ash.h" |
| 10 #include "ash/shelf/shelf_layout_manager.h" | 10 #include "ash/shelf/shelf_layout_manager.h" |
| 11 #include "ash/shell.h" | 11 #include "ash/shell.h" |
| 12 #include "ash/wm/always_on_top_controller.h" | 12 #include "ash/wm/always_on_top_controller.h" |
| 13 #include "ash/wm/base_layout_manager.h" | 13 #include "ash/wm/base_layout_manager.h" |
| 14 #include "ash/wm/frame_painter.h" | 14 #include "ash/wm/frame_painter.h" |
| 15 #include "ash/wm/property_util.h" | |
| 16 #include "ash/wm/window_animations.h" | 15 #include "ash/wm/window_animations.h" |
| 17 #include "ash/wm/window_properties.h" | 16 #include "ash/wm/window_properties.h" |
| 18 #include "ash/wm/window_util.h" | 17 #include "ash/wm/window_util.h" |
| 19 #include "ash/wm/workspace/auto_window_management.h" | 18 #include "ash/wm/workspace/auto_window_management.h" |
| 20 #include "ui/aura/client/aura_constants.h" | 19 #include "ui/aura/client/aura_constants.h" |
| 21 #include "ui/aura/root_window.h" | 20 #include "ui/aura/root_window.h" |
| 22 #include "ui/aura/window.h" | 21 #include "ui/aura/window.h" |
| 23 #include "ui/aura/window_observer.h" | 22 #include "ui/aura/window_observer.h" |
| 24 #include "ui/base/events/event.h" | 23 #include "ui/base/events/event.h" |
| 25 #include "ui/base/ui_base_types.h" | 24 #include "ui/base/ui_base_types.h" |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 SetChildBoundsDirect( | 356 SetChildBoundsDirect( |
| 358 window, | 357 window, |
| 359 ScreenAsh::GetDisplayBoundsInParent(window->parent()->parent())); | 358 ScreenAsh::GetDisplayBoundsInParent(window->parent()->parent())); |
| 360 return true; | 359 return true; |
| 361 } | 360 } |
| 362 return false; | 361 return false; |
| 363 } | 362 } |
| 364 | 363 |
| 365 } // namespace internal | 364 } // namespace internal |
| 366 } // namespace ash | 365 } // namespace ash |
| OLD | NEW |