| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_WM_SHELL_H_ | 5 #ifndef ASH_COMMON_WM_SHELL_H_ |
| 6 #define ASH_COMMON_WM_SHELL_H_ | 6 #define ASH_COMMON_WM_SHELL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace ash { | 42 namespace ash { |
| 43 | 43 |
| 44 class AcceleratorController; | 44 class AcceleratorController; |
| 45 class AccessibilityDelegate; | 45 class AccessibilityDelegate; |
| 46 class BrightnessControlDelegate; | 46 class BrightnessControlDelegate; |
| 47 class FocusCycler; | 47 class FocusCycler; |
| 48 class ImmersiveContextAsh; | 48 class ImmersiveContextAsh; |
| 49 class ImmersiveFullscreenController; | 49 class ImmersiveFullscreenController; |
| 50 class KeyEventWatcher; |
| 50 class KeyboardBrightnessControlDelegate; | 51 class KeyboardBrightnessControlDelegate; |
| 51 class KeyboardUI; | 52 class KeyboardUI; |
| 52 class MaximizeModeController; | 53 class MaximizeModeController; |
| 53 class MruWindowTracker; | 54 class MruWindowTracker; |
| 54 class NewWindowDelegate; | 55 class NewWindowDelegate; |
| 55 class PaletteDelegate; | 56 class PaletteDelegate; |
| 56 class ScopedDisableInternalMouseAndKeyboard; | 57 class ScopedDisableInternalMouseAndKeyboard; |
| 57 class SessionStateDelegate; | 58 class SessionStateDelegate; |
| 58 class ShelfDelegate; | 59 class ShelfDelegate; |
| 59 class ShelfModel; | 60 class ShelfModel; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 302 |
| 302 virtual std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler( | 303 virtual std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler( |
| 303 WmWindow* workspace_window) = 0; | 304 WmWindow* workspace_window) = 0; |
| 304 | 305 |
| 305 virtual std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> | 306 virtual std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> |
| 306 CreateScopedDisableInternalMouseAndKeyboard() = 0; | 307 CreateScopedDisableInternalMouseAndKeyboard() = 0; |
| 307 | 308 |
| 308 virtual std::unique_ptr<ImmersiveFullscreenController> | 309 virtual std::unique_ptr<ImmersiveFullscreenController> |
| 309 CreateImmersiveFullscreenController() = 0; | 310 CreateImmersiveFullscreenController() = 0; |
| 310 | 311 |
| 312 virtual std::unique_ptr<KeyEventWatcher> CreateKeyEventWatcher() = 0; |
| 313 |
| 311 void CreateShelfDelegate(); | 314 void CreateShelfDelegate(); |
| 312 | 315 |
| 313 // Called after maximize mode has started, windows might still animate though. | 316 // Called after maximize mode has started, windows might still animate though. |
| 314 void OnMaximizeModeStarted(); | 317 void OnMaximizeModeStarted(); |
| 315 | 318 |
| 316 // Called after maximize mode has ended, windows might still be returning to | 319 // Called after maximize mode has ended, windows might still be returning to |
| 317 // their original position. | 320 // their original position. |
| 318 void OnMaximizeModeEnded(); | 321 void OnMaximizeModeEnded(); |
| 319 | 322 |
| 320 // Called when the overview mode is about to be started (before the windows | 323 // Called when the overview mode is about to be started (before the windows |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 472 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
| 470 | 473 |
| 471 #if defined(OS_CHROMEOS) | 474 #if defined(OS_CHROMEOS) |
| 472 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; | 475 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; |
| 473 #endif | 476 #endif |
| 474 }; | 477 }; |
| 475 | 478 |
| 476 } // namespace ash | 479 } // namespace ash |
| 477 | 480 |
| 478 #endif // ASH_COMMON_WM_SHELL_H_ | 481 #endif // ASH_COMMON_WM_SHELL_H_ |
| OLD | NEW |