| 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/ash_constants.h" | 10 #include "ash/ash_constants.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #include "ui/aura/window_event_dispatcher.h" | 56 #include "ui/aura/window_event_dispatcher.h" |
| 57 #include "ui/aura/window_observer.h" | 57 #include "ui/aura/window_observer.h" |
| 58 #include "ui/aura/window_tracker.h" | 58 #include "ui/aura/window_tracker.h" |
| 59 #include "ui/base/hit_test.h" | 59 #include "ui/base/hit_test.h" |
| 60 #include "ui/base/models/menu_model.h" | 60 #include "ui/base/models/menu_model.h" |
| 61 #include "ui/gfx/display.h" | 61 #include "ui/gfx/display.h" |
| 62 #include "ui/gfx/screen.h" | 62 #include "ui/gfx/screen.h" |
| 63 #include "ui/keyboard/keyboard_controller.h" | 63 #include "ui/keyboard/keyboard_controller.h" |
| 64 #include "ui/keyboard/keyboard_util.h" | 64 #include "ui/keyboard/keyboard_util.h" |
| 65 #include "ui/views/controls/menu/menu_runner.h" | 65 #include "ui/views/controls/menu/menu_runner.h" |
| 66 #include "ui/views/corewm/capture_controller.h" | |
| 67 #include "ui/views/corewm/visibility_controller.h" | |
| 68 #include "ui/views/corewm/window_util.h" | |
| 69 #include "ui/views/view_model.h" | 66 #include "ui/views/view_model.h" |
| 70 #include "ui/views/view_model_utils.h" | 67 #include "ui/views/view_model_utils.h" |
| 68 #include "ui/wm/core/capture_controller.h" |
| 69 #include "ui/wm/core/visibility_controller.h" |
| 70 #include "ui/wm/core/window_util.h" |
| 71 #include "ui/wm/public/easy_resize_window_targeter.h" | 71 #include "ui/wm/public/easy_resize_window_targeter.h" |
| 72 #include "ui/wm/public/window_types.h" | 72 #include "ui/wm/public/window_types.h" |
| 73 | 73 |
| 74 #if defined(OS_CHROMEOS) | 74 #if defined(OS_CHROMEOS) |
| 75 #include "ash/wm/boot_splash_screen_chromeos.h" | 75 #include "ash/wm/boot_splash_screen_chromeos.h" |
| 76 #endif | 76 #endif |
| 77 | 77 |
| 78 namespace ash { | 78 namespace ash { |
| 79 namespace { | 79 namespace { |
| 80 | 80 |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 DisableTouchHudProjection(); | 1012 DisableTouchHudProjection(); |
| 1013 } | 1013 } |
| 1014 | 1014 |
| 1015 RootWindowController* GetRootWindowController( | 1015 RootWindowController* GetRootWindowController( |
| 1016 const aura::Window* root_window) { | 1016 const aura::Window* root_window) { |
| 1017 return root_window ? GetRootWindowSettings(root_window)->controller : NULL; | 1017 return root_window ? GetRootWindowSettings(root_window)->controller : NULL; |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 } // namespace internal | 1020 } // namespace internal |
| 1021 } // namespace ash | 1021 } // namespace ash |
| OLD | NEW |