| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | 5 #ifndef UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ |
| 6 #define UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | 6 #define UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 // LayoutManager overrides: | 34 // LayoutManager overrides: |
| 35 virtual void OnWindowResized() OVERRIDE; | 35 virtual void OnWindowResized() OVERRIDE; |
| 36 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; | 36 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; |
| 37 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; | 37 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE; |
| 38 virtual void OnChildWindowVisibilityChanged(aura::Window* child, | 38 virtual void OnChildWindowVisibilityChanged(aura::Window* child, |
| 39 bool visibile) OVERRIDE; | 39 bool visibile) OVERRIDE; |
| 40 virtual void SetChildBounds(aura::Window* child, | 40 virtual void SetChildBounds(aura::Window* child, |
| 41 const gfx::Rect& requested_bounds) OVERRIDE; | 41 const gfx::Rect& requested_bounds) OVERRIDE; |
| 42 | 42 |
| 43 // WindowObserver overrides: | 43 // WindowObserver overrides: |
| 44 virtual void OnPropertyChanged(aura::Window* window, | 44 virtual void OnWindowPropertyChanged(aura::Window* window, |
| 45 const char* name, | 45 const char* name, |
| 46 void* old) OVERRIDE; | 46 void* old) OVERRIDE; |
| 47 | 47 |
| 48 private: | 48 private: |
| 49 typedef std::set<aura::Window*> Windows; | 49 typedef std::set<aura::Window*> Windows; |
| 50 | 50 |
| 51 // If necessary adjusts the bounds of window based on it's show state. | 51 // If necessary adjusts the bounds of window based on it's show state. |
| 52 void WindowStateChanged(aura::Window* window); | 52 void WindowStateChanged(aura::Window* window); |
| 53 | 53 |
| 54 // Updates the visbility of the shelf based on if there are any full screen | 54 // Updates the visbility of the shelf based on if there are any full screen |
| 55 // windows. | 55 // windows. |
| 56 void UpdateShelfVisibility(); | 56 void UpdateShelfVisibility(); |
| 57 | 57 |
| 58 // Set of windows we're listening to. | 58 // Set of windows we're listening to. |
| 59 Windows windows_; | 59 Windows windows_; |
| 60 | 60 |
| 61 ShelfLayoutController* shelf_; | 61 ShelfLayoutController* shelf_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManager); | 63 DISALLOW_COPY_AND_ASSIGN(ToplevelLayoutManager); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namepsace aura_shell | 66 } // namepsace aura_shell |
| 67 } // namepsace internal | 67 } // namepsace internal |
| 68 | 68 |
| 69 #endif // UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ | 69 #endif // UI_AURA_SHELL_TOPLEVEL_LAYOUT_MANAGER_H_ |
| OLD | NEW |