| 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 #ifndef ASH_SHELL_H_ | 5 #ifndef ASH_SHELL_H_ |
| 6 #define ASH_SHELL_H_ | 6 #define ASH_SHELL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
| 13 #include "ash/common/shelf/shelf_types.h" | 13 #include "ash/common/shelf/shelf_types.h" |
| 14 #include "ash/common/wm_shell_common.h" | 14 #include "ash/common/wm_shell_common.h" |
| 15 #include "ash/metrics/user_metrics_recorder.h" | 15 #include "ash/metrics/user_metrics_recorder.h" |
| 16 #include "ash/system/user/login_status.h" | |
| 17 #include "ash/wm/cursor_manager_chromeos.h" | 16 #include "ash/wm/cursor_manager_chromeos.h" |
| 18 #include "ash/wm/system_modal_container_event_filter_delegate.h" | 17 #include "ash/wm/system_modal_container_event_filter_delegate.h" |
| 19 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
| 20 #include "base/gtest_prod_util.h" | 19 #include "base/gtest_prod_util.h" |
| 21 #include "base/macros.h" | 20 #include "base/macros.h" |
| 22 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
| 23 #include "base/observer_list.h" | 22 #include "base/observer_list.h" |
| 24 #include "ui/aura/window.h" | 23 #include "ui/aura/window.h" |
| 25 #include "ui/base/ui_base_types.h" | 24 #include "ui/base/ui_base_types.h" |
| 26 #include "ui/display/screen.h" | 25 #include "ui/display/screen.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 class EventTransformationHandler; | 101 class EventTransformationHandler; |
| 103 class FirstRunHelper; | 102 class FirstRunHelper; |
| 104 class GPUSupport; | 103 class GPUSupport; |
| 105 class HighContrastController; | 104 class HighContrastController; |
| 106 class KeyboardUI; | 105 class KeyboardUI; |
| 107 class KeyboardUMAEventFilter; | 106 class KeyboardUMAEventFilter; |
| 108 class LastWindowClosedLogoutReminder; | 107 class LastWindowClosedLogoutReminder; |
| 109 class LinkHandlerModelFactory; | 108 class LinkHandlerModelFactory; |
| 110 class LocaleNotificationController; | 109 class LocaleNotificationController; |
| 111 class LockStateController; | 110 class LockStateController; |
| 111 enum class LoginStatus; |
| 112 class LogoutConfirmationController; | 112 class LogoutConfirmationController; |
| 113 class MagnificationController; | 113 class MagnificationController; |
| 114 class MaximizeModeController; | 114 class MaximizeModeController; |
| 115 class MaximizeModeWindowManager; | 115 class MaximizeModeWindowManager; |
| 116 class MediaDelegate; | 116 class MediaDelegate; |
| 117 class MouseCursorEventFilter; | 117 class MouseCursorEventFilter; |
| 118 class MruWindowTracker; | 118 class MruWindowTracker; |
| 119 class NewWindowDelegate; | 119 class NewWindowDelegate; |
| 120 class OverlayEventFilter; | 120 class OverlayEventFilter; |
| 121 class PartialMagnificationController; | 121 class PartialMagnificationController; |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 bool in_mus_ = false; | 766 bool in_mus_ = false; |
| 767 | 767 |
| 768 std::unique_ptr<KeyboardUI> keyboard_ui_; | 768 std::unique_ptr<KeyboardUI> keyboard_ui_; |
| 769 | 769 |
| 770 DISALLOW_COPY_AND_ASSIGN(Shell); | 770 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 771 }; | 771 }; |
| 772 | 772 |
| 773 } // namespace ash | 773 } // namespace ash |
| 774 | 774 |
| 775 #endif // ASH_SHELL_H_ | 775 #endif // ASH_SHELL_H_ |
| OLD | NEW |