Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: ash/shell.h

Issue 2904073002: [mus+ash] Removes WmWindow from ash/wm/screen_pinning_controller.h (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash/wm/screen_pinning_controller.h (removes unneeded header) Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/shelf/shelf_layout_manager.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ash/shelf/shelf_layout_manager.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698