| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "ash/wm/window_properties.h" | 42 #include "ash/wm/window_properties.h" |
| 43 #include "ash/wm/window_state.h" | 43 #include "ash/wm/window_state.h" |
| 44 #include "ash/wm/window_util.h" | 44 #include "ash/wm/window_util.h" |
| 45 #include "ash/wm/workspace/workspace_layout_manager.h" | 45 #include "ash/wm/workspace/workspace_layout_manager.h" |
| 46 #include "ash/wm/workspace_controller.h" | 46 #include "ash/wm/workspace_controller.h" |
| 47 #include "base/command_line.h" | 47 #include "base/command_line.h" |
| 48 #include "base/time/time.h" | 48 #include "base/time/time.h" |
| 49 #include "ui/aura/client/aura_constants.h" | 49 #include "ui/aura/client/aura_constants.h" |
| 50 #include "ui/aura/client/drag_drop_client.h" | 50 #include "ui/aura/client/drag_drop_client.h" |
| 51 #include "ui/aura/client/tooltip_client.h" | 51 #include "ui/aura/client/tooltip_client.h" |
| 52 #include "ui/aura/root_window.h" | |
| 53 #include "ui/aura/window.h" | 52 #include "ui/aura/window.h" |
| 54 #include "ui/aura/window_delegate.h" | 53 #include "ui/aura/window_delegate.h" |
| 54 #include "ui/aura/window_event_dispatcher.h" |
| 55 #include "ui/aura/window_observer.h" | 55 #include "ui/aura/window_observer.h" |
| 56 #include "ui/aura/window_tracker.h" | 56 #include "ui/aura/window_tracker.h" |
| 57 #include "ui/base/hit_test.h" | 57 #include "ui/base/hit_test.h" |
| 58 #include "ui/base/models/menu_model.h" | 58 #include "ui/base/models/menu_model.h" |
| 59 #include "ui/gfx/display.h" | 59 #include "ui/gfx/display.h" |
| 60 #include "ui/gfx/screen.h" | 60 #include "ui/gfx/screen.h" |
| 61 #include "ui/keyboard/keyboard_controller.h" | 61 #include "ui/keyboard/keyboard_controller.h" |
| 62 #include "ui/keyboard/keyboard_util.h" | 62 #include "ui/keyboard/keyboard_util.h" |
| 63 #include "ui/views/controls/menu/menu_runner.h" | 63 #include "ui/views/controls/menu/menu_runner.h" |
| 64 #include "ui/views/corewm/capture_controller.h" | 64 #include "ui/views/corewm/capture_controller.h" |
| (...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 DisableTouchHudProjection(); | 980 DisableTouchHudProjection(); |
| 981 } | 981 } |
| 982 | 982 |
| 983 RootWindowController* GetRootWindowController( | 983 RootWindowController* GetRootWindowController( |
| 984 const aura::Window* root_window) { | 984 const aura::Window* root_window) { |
| 985 return root_window ? GetRootWindowSettings(root_window)->controller : NULL; | 985 return root_window ? GetRootWindowSettings(root_window)->controller : NULL; |
| 986 } | 986 } |
| 987 | 987 |
| 988 } // namespace internal | 988 } // namespace internal |
| 989 } // namespace ash | 989 } // namespace ash |
| OLD | NEW |