| 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/root_window_controller.h" | 5 #include "ash/root_window_controller.h" |
| 6 | 6 |
| 7 #include <queue> | 7 #include <queue> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/aura/aura_layout_manager_adapter.h" | 10 #include "ash/aura/aura_layout_manager_adapter.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #include "ash/wm/stacking_controller.h" | 54 #include "ash/wm/stacking_controller.h" |
| 55 #include "ash/wm/system_wallpaper_controller.h" | 55 #include "ash/wm/system_wallpaper_controller.h" |
| 56 #include "ash/wm/window_properties.h" | 56 #include "ash/wm/window_properties.h" |
| 57 #include "ash/wm/window_state_aura.h" | 57 #include "ash/wm/window_state_aura.h" |
| 58 #include "ash/wm/window_util.h" | 58 #include "ash/wm/window_util.h" |
| 59 #include "base/command_line.h" | 59 #include "base/command_line.h" |
| 60 #include "base/macros.h" | 60 #include "base/macros.h" |
| 61 #include "base/memory/ptr_util.h" | 61 #include "base/memory/ptr_util.h" |
| 62 #include "base/time/time.h" | 62 #include "base/time/time.h" |
| 63 #include "ui/aura/client/aura_constants.h" | 63 #include "ui/aura/client/aura_constants.h" |
| 64 #include "ui/aura/client/drag_drop_client.h" |
| 64 #include "ui/aura/client/screen_position_client.h" | 65 #include "ui/aura/client/screen_position_client.h" |
| 65 #include "ui/aura/window.h" | 66 #include "ui/aura/window.h" |
| 66 #include "ui/aura/window_event_dispatcher.h" | 67 #include "ui/aura/window_event_dispatcher.h" |
| 67 #include "ui/aura/window_observer.h" | 68 #include "ui/aura/window_observer.h" |
| 68 #include "ui/aura/window_tracker.h" | 69 #include "ui/aura/window_tracker.h" |
| 69 #include "ui/display/display.h" | 70 #include "ui/display/display.h" |
| 70 #include "ui/display/screen.h" | 71 #include "ui/display/screen.h" |
| 71 #include "ui/keyboard/keyboard_controller.h" | 72 #include "ui/keyboard/keyboard_controller.h" |
| 72 #include "ui/keyboard/keyboard_util.h" | 73 #include "ui/keyboard/keyboard_util.h" |
| 73 #include "ui/views/view_model.h" | 74 #include "ui/views/view_model.h" |
| 74 #include "ui/views/view_model_utils.h" | 75 #include "ui/views/view_model_utils.h" |
| 75 #include "ui/wm/core/capture_controller.h" | 76 #include "ui/wm/core/capture_controller.h" |
| 76 #include "ui/wm/core/visibility_controller.h" | 77 #include "ui/wm/core/visibility_controller.h" |
| 77 #include "ui/wm/core/window_util.h" | 78 #include "ui/wm/core/window_util.h" |
| 78 #include "ui/wm/public/drag_drop_client.h" | |
| 79 #include "ui/wm/public/tooltip_client.h" | 79 #include "ui/wm/public/tooltip_client.h" |
| 80 #include "ui/wm/public/window_types.h" | 80 #include "ui/wm/public/window_types.h" |
| 81 | 81 |
| 82 #if defined(OS_CHROMEOS) | 82 #if defined(OS_CHROMEOS) |
| 83 #include "ash/ash_touch_exploration_manager_chromeos.h" | 83 #include "ash/ash_touch_exploration_manager_chromeos.h" |
| 84 #include "ash/wm/boot_splash_screen_chromeos.h" | 84 #include "ash/wm/boot_splash_screen_chromeos.h" |
| 85 #include "chromeos/chromeos_switches.h" | 85 #include "chromeos/chromeos_switches.h" |
| 86 #include "ui/chromeos/touch_exploration_controller.h" | 86 #include "ui/chromeos/touch_exploration_controller.h" |
| 87 #endif | 87 #endif |
| 88 | 88 |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 EnableTouchHudProjection(); | 568 EnableTouchHudProjection(); |
| 569 else | 569 else |
| 570 DisableTouchHudProjection(); | 570 DisableTouchHudProjection(); |
| 571 } | 571 } |
| 572 | 572 |
| 573 RootWindowController* GetRootWindowController(const aura::Window* root_window) { | 573 RootWindowController* GetRootWindowController(const aura::Window* root_window) { |
| 574 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; | 574 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; |
| 575 } | 575 } |
| 576 | 576 |
| 577 } // namespace ash | 577 } // namespace ash |
| OLD | NEW |