| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 void OnCastingSessionStartedOrStopped(bool started); | 292 void OnCastingSessionStartedOrStopped(bool started); |
| 293 | 293 |
| 294 // Called when the overview mode is about to be started (before the windows | 294 // Called when the overview mode is about to be started (before the windows |
| 295 // get re-arranged). | 295 // get re-arranged). |
| 296 void OnOverviewModeStarting(); | 296 void OnOverviewModeStarting(); |
| 297 | 297 |
| 298 // Called before the overview mode is ending (before the windows get arranged | 298 // Called before the overview mode is ending (before the windows get arranged |
| 299 // to their final position). | 299 // to their final position). |
| 300 void OnOverviewModeEnding(); | 300 void OnOverviewModeEnding(); |
| 301 | 301 |
| 302 // Called after maximize mode has started, windows might still animate though. |
| 303 void OnMaximizeModeStarted(); |
| 304 |
| 305 // Called after maximize mode has ended, windows might still be returning to |
| 306 // their original position. |
| 307 void OnMaximizeModeEnded(); |
| 308 |
| 302 // Initializes |shelf_|. Does nothing if it's already initialized. | 309 // Initializes |shelf_|. Does nothing if it's already initialized. |
| 303 void CreateShelf(); | 310 void CreateShelf(); |
| 304 | 311 |
| 305 // Creates a virtual keyboard. Deletes the old virtual keyboard if it already | 312 // Creates a virtual keyboard. Deletes the old virtual keyboard if it already |
| 306 // exists. | 313 // exists. |
| 307 void CreateKeyboard(); | 314 void CreateKeyboard(); |
| 308 | 315 |
| 309 // Deactivates the virtual keyboard. | 316 // Deactivates the virtual keyboard. |
| 310 void DeactivateKeyboard(); | 317 void DeactivateKeyboard(); |
| 311 | 318 |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 | 741 |
| 735 // Injected content::GPUDataManager support. | 742 // Injected content::GPUDataManager support. |
| 736 scoped_ptr<GPUSupport> gpu_support_; | 743 scoped_ptr<GPUSupport> gpu_support_; |
| 737 | 744 |
| 738 DISALLOW_COPY_AND_ASSIGN(Shell); | 745 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 739 }; | 746 }; |
| 740 | 747 |
| 741 } // namespace ash | 748 } // namespace ash |
| 742 | 749 |
| 743 #endif // ASH_SHELL_H_ | 750 #endif // ASH_SHELL_H_ |
| OLD | NEW |