| 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_manager2.h" | 5 #include "ash/wm/workspace/workspace_layout_manager2.h" |
| 6 | 6 |
| 7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
| 8 #include "ash/screen_ash.h" |
| 8 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 9 #include "ash/screen_ash.h" | |
| 10 #include "ash/wm/always_on_top_controller.h" | 10 #include "ash/wm/always_on_top_controller.h" |
| 11 #include "ash/wm/window_animations.h" | 11 #include "ash/wm/window_animations.h" |
| 12 #include "ash/wm/window_properties.h" |
| 12 #include "ash/wm/window_util.h" | 13 #include "ash/wm/window_util.h" |
| 13 #include "ash/wm/window_properties.h" | |
| 14 #include "ash/wm/workspace/workspace2.h" | 14 #include "ash/wm/workspace/workspace2.h" |
| 15 #include "ash/wm/workspace/workspace_manager2.h" | 15 #include "ash/wm/workspace/workspace_manager2.h" |
| 16 #include "base/auto_reset.h" | 16 #include "base/auto_reset.h" |
| 17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
| 18 #include "ui/aura/client/aura_constants.h" | 18 #include "ui/aura/client/aura_constants.h" |
| 19 #include "ui/aura/root_window.h" | 19 #include "ui/aura/root_window.h" |
| 20 #include "ui/aura/window.h" | 20 #include "ui/aura/window.h" |
| 21 #include "ui/aura/window_observer.h" | 21 #include "ui/aura/window_observer.h" |
| 22 #include "ui/base/event.h" | 22 #include "ui/base/events/event.h" |
| 23 #include "ui/base/ui_base_types.h" | 23 #include "ui/base/ui_base_types.h" |
| 24 | 24 |
| 25 using aura::Window; | 25 using aura::Window; |
| 26 | 26 |
| 27 namespace ash { | 27 namespace ash { |
| 28 namespace internal { | 28 namespace internal { |
| 29 | 29 |
| 30 namespace { | 30 namespace { |
| 31 | 31 |
| 32 gfx::Rect BoundsWithScreenEdgeVisible( | 32 gfx::Rect BoundsWithScreenEdgeVisible( |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 } | 270 } |
| 271 return false; | 271 return false; |
| 272 } | 272 } |
| 273 | 273 |
| 274 WorkspaceManager2* WorkspaceLayoutManager2::workspace_manager() { | 274 WorkspaceManager2* WorkspaceLayoutManager2::workspace_manager() { |
| 275 return workspace_->workspace_manager(); | 275 return workspace_->workspace_manager(); |
| 276 } | 276 } |
| 277 | 277 |
| 278 } // namespace internal | 278 } // namespace internal |
| 279 } // namespace ash | 279 } // namespace ash |
| OLD | NEW |