| 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> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 class ResizeShadowController; | 105 class ResizeShadowController; |
| 106 class ResolutionNotificationController; | 106 class ResolutionNotificationController; |
| 107 class RootWindowController; | 107 class RootWindowController; |
| 108 class ScopedOverviewAnimationSettingsFactoryAura; | 108 class ScopedOverviewAnimationSettingsFactoryAura; |
| 109 class ScreenAsh; | 109 class ScreenAsh; |
| 110 class ScreenOrientationController; | 110 class ScreenOrientationController; |
| 111 class ScreenshotController; | 111 class ScreenshotController; |
| 112 class ScreenPinningController; | 112 class ScreenPinningController; |
| 113 class ScreenPositionController; | 113 class ScreenPositionController; |
| 114 class SessionStateDelegate; | 114 class SessionStateDelegate; |
| 115 class Shelf; | |
| 116 class ShellDelegate; | 115 class ShellDelegate; |
| 117 struct ShellInitParams; | 116 struct ShellInitParams; |
| 118 class SlowAnimationEventFilter; | 117 class SlowAnimationEventFilter; |
| 119 class StatusAreaWidget; | 118 class StatusAreaWidget; |
| 120 class StickyKeysController; | 119 class StickyKeysController; |
| 121 class StylusMetricsRecorder; | 120 class StylusMetricsRecorder; |
| 122 class SystemGestureEventFilter; | 121 class SystemGestureEventFilter; |
| 123 class SystemModalContainerEventFilter; | 122 class SystemModalContainerEventFilter; |
| 124 class SystemTray; | 123 class SystemTray; |
| 125 class ToplevelWindowEventHandler; | 124 class ToplevelWindowEventHandler; |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 base::SequencedWorkerPool* blocking_pool_; | 593 base::SequencedWorkerPool* blocking_pool_; |
| 595 | 594 |
| 596 bool in_mus_ = false; | 595 bool in_mus_ = false; |
| 597 | 596 |
| 598 DISALLOW_COPY_AND_ASSIGN(Shell); | 597 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 599 }; | 598 }; |
| 600 | 599 |
| 601 } // namespace ash | 600 } // namespace ash |
| 602 | 601 |
| 603 #endif // ASH_SHELL_H_ | 602 #endif // ASH_SHELL_H_ |
| OLD | NEW |