| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef UI_AURA_SHELL_SHELL_H_ | 5 #ifndef UI_AURA_SHELL_SHELL_H_ |
| 6 #define UI_AURA_SHELL_SHELL_H_ | 6 #define UI_AURA_SHELL_SHELL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace aura_shell { | 27 namespace aura_shell { |
| 28 | 28 |
| 29 class Launcher; | 29 class Launcher; |
| 30 class ShellAcceleratorController; | 30 class ShellAcceleratorController; |
| 31 class ShellDelegate; | 31 class ShellDelegate; |
| 32 class ShellTooltipManager; | 32 class ShellTooltipManager; |
| 33 | 33 |
| 34 namespace internal { | 34 namespace internal { |
| 35 class ActivationController; |
| 35 class AppList; | 36 class AppList; |
| 36 class DragDropController; | 37 class DragDropController; |
| 37 class ShadowController; | 38 class ShadowController; |
| 38 class ShellAcceleratorFilter; | 39 class ShellAcceleratorFilter; |
| 39 class WorkspaceController; | 40 class WorkspaceController; |
| 40 } | 41 } |
| 41 | 42 |
| 42 // Shell is a singleton object that presents the Shell API and implements the | 43 // Shell is a singleton object that presents the Shell API and implements the |
| 43 // RootWindow's delegate interface. | 44 // RootWindow's delegate interface. |
| 44 class AURA_SHELL_EXPORT Shell { | 45 class AURA_SHELL_EXPORT Shell { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 base::WeakPtrFactory<Shell> method_factory_; | 103 base::WeakPtrFactory<Shell> method_factory_; |
| 103 | 104 |
| 104 scoped_ptr<ShellAcceleratorController> accelerator_controller_; | 105 scoped_ptr<ShellAcceleratorController> accelerator_controller_; |
| 105 | 106 |
| 106 scoped_ptr<ShellDelegate> delegate_; | 107 scoped_ptr<ShellDelegate> delegate_; |
| 107 | 108 |
| 108 scoped_ptr<Launcher> launcher_; | 109 scoped_ptr<Launcher> launcher_; |
| 109 | 110 |
| 110 scoped_ptr<internal::AppList> app_list_; | 111 scoped_ptr<internal::AppList> app_list_; |
| 111 | 112 |
| 113 scoped_ptr<internal::ActivationController> activation_controller_; |
| 112 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 114 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 113 scoped_ptr<internal::WorkspaceController> workspace_controller_; | 115 scoped_ptr<internal::WorkspaceController> workspace_controller_; |
| 114 scoped_ptr<internal::ShadowController> shadow_controller_; | 116 scoped_ptr<internal::ShadowController> shadow_controller_; |
| 115 | 117 |
| 116 // An event filter that pre-handles global accelerators. | 118 // An event filter that pre-handles global accelerators. |
| 117 scoped_ptr<internal::ShellAcceleratorFilter> accelerator_filter_; | 119 scoped_ptr<internal::ShellAcceleratorFilter> accelerator_filter_; |
| 118 | 120 |
| 119 scoped_ptr<ShellTooltipManager> tooltip_manager_; | 121 scoped_ptr<ShellTooltipManager> tooltip_manager_; |
| 120 | 122 |
| 121 DISALLOW_COPY_AND_ASSIGN(Shell); | 123 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 122 }; | 124 }; |
| 123 | 125 |
| 124 } // namespace aura_shell | 126 } // namespace aura_shell |
| 125 | 127 |
| 126 #endif // UI_AURA_SHELL_SHELL_H_ | 128 #endif // UI_AURA_SHELL_SHELL_H_ |
| OLD | NEW |