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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 // windows get re-arranged). | 582 // windows get re-arranged). |
583 void NotifyOverviewModeStarting(); | 583 void NotifyOverviewModeStarting(); |
584 | 584 |
585 // Notifies observers that overview mode has ended. | 585 // Notifies observers that overview mode has ended. |
586 void NotifyOverviewModeEnded(); | 586 void NotifyOverviewModeEnded(); |
587 | 587 |
588 // Notifies observers that fullscreen mode has changed for |root_window|. | 588 // Notifies observers that fullscreen mode has changed for |root_window|. |
589 void NotifyFullscreenStateChanged(bool is_fullscreen, WmWindow* root_window); | 589 void NotifyFullscreenStateChanged(bool is_fullscreen, WmWindow* root_window); |
590 | 590 |
591 // Notifies observers that |pinned_window| changed its pinned window state. | 591 // Notifies observers that |pinned_window| changed its pinned window state. |
592 void NotifyPinnedStateChanged(WmWindow* pinned_window); | 592 void NotifyPinnedStateChanged(aura::Window* pinned_window); |
593 | 593 |
594 // Notifies observers that the virtual keyboard has been | 594 // Notifies observers that the virtual keyboard has been |
595 // activated/deactivated for |root_window|. | 595 // activated/deactivated for |root_window|. |
596 void NotifyVirtualKeyboardActivated(bool activated, | 596 void NotifyVirtualKeyboardActivated(bool activated, |
597 aura::Window* root_window); | 597 aura::Window* root_window); |
598 | 598 |
599 // Notifies observers that the shelf was created for |root_window|. | 599 // Notifies observers that the shelf was created for |root_window|. |
600 // TODO(jamescook): Move to Shelf. | 600 // TODO(jamescook): Move to Shelf. |
601 void NotifyShelfCreatedForRootWindow(WmWindow* root_window); | 601 void NotifyShelfCreatedForRootWindow(WmWindow* root_window); |
602 | 602 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
834 base::ObserverList<ShellObserver> shell_observers_; | 834 base::ObserverList<ShellObserver> shell_observers_; |
835 | 835 |
836 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; | 836 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; |
837 | 837 |
838 DISALLOW_COPY_AND_ASSIGN(Shell); | 838 DISALLOW_COPY_AND_ASSIGN(Shell); |
839 }; | 839 }; |
840 | 840 |
841 } // namespace ash | 841 } // namespace ash |
842 | 842 |
843 #endif // ASH_SHELL_H_ | 843 #endif // ASH_SHELL_H_ |
OLD | NEW |