| 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 <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 // unlocked. | 298 // unlocked. |
| 299 void OnLockStateChanged(bool locked); | 299 void OnLockStateChanged(bool locked); |
| 300 | 300 |
| 301 // Called when a casting session is started or stopped. | 301 // Called when a casting session is started or stopped. |
| 302 void OnCastingSessionStartedOrStopped(bool started); | 302 void OnCastingSessionStartedOrStopped(bool started); |
| 303 | 303 |
| 304 // Called when the overview mode is about to be started (before the windows | 304 // Called when the overview mode is about to be started (before the windows |
| 305 // get re-arranged). | 305 // get re-arranged). |
| 306 void OnOverviewModeStarting(); | 306 void OnOverviewModeStarting(); |
| 307 | 307 |
| 308 // Called before the overview mode is ending (before the windows get arranged | 308 // Called after overview mode has ended. |
| 309 // to their final position). | 309 void OnOverviewModeEnded(); |
| 310 void OnOverviewModeEnding(); | |
| 311 | 310 |
| 312 // Called after maximize mode has started, windows might still animate though. | 311 // Called after maximize mode has started, windows might still animate though. |
| 313 void OnMaximizeModeStarted(); | 312 void OnMaximizeModeStarted(); |
| 314 | 313 |
| 315 // Called after maximize mode has ended, windows might still be returning to | 314 // Called after maximize mode has ended, windows might still be returning to |
| 316 // their original position. | 315 // their original position. |
| 317 void OnMaximizeModeEnded(); | 316 void OnMaximizeModeEnded(); |
| 318 | 317 |
| 319 // Called when a root window is created. | 318 // Called when a root window is created. |
| 320 void OnRootWindowAdded(aura::Window* root_window); | 319 void OnRootWindowAdded(aura::Window* root_window); |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 | 768 |
| 770 // Injected content::GPUDataManager support. | 769 // Injected content::GPUDataManager support. |
| 771 scoped_ptr<GPUSupport> gpu_support_; | 770 scoped_ptr<GPUSupport> gpu_support_; |
| 772 | 771 |
| 773 DISALLOW_COPY_AND_ASSIGN(Shell); | 772 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 774 }; | 773 }; |
| 775 | 774 |
| 776 } // namespace ash | 775 } // namespace ash |
| 777 | 776 |
| 778 #endif // ASH_SHELL_H_ | 777 #endif // ASH_SHELL_H_ |
| OLD | NEW |