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_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
6 #define ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 void OnWindowRemovedFromLayout(aura::Window* child) override; | 88 void OnWindowRemovedFromLayout(aura::Window* child) override; |
89 void OnChildWindowVisibilityChanged(aura::Window* child, | 89 void OnChildWindowVisibilityChanged(aura::Window* child, |
90 bool visibile) override; | 90 bool visibile) override; |
91 void SetChildBounds(aura::Window* child, | 91 void SetChildBounds(aura::Window* child, |
92 const gfx::Rect& requested_bounds) override; | 92 const gfx::Rect& requested_bounds) override; |
93 | 93 |
94 // Overridden from ShelfIconObserver | 94 // Overridden from ShelfIconObserver |
95 void OnShelfIconPositionsChanged() override; | 95 void OnShelfIconPositionsChanged() override; |
96 | 96 |
97 // Overridden from ShellObserver | 97 // Overridden from ShellObserver |
| 98 void OnOverviewModeEnded() override; |
98 void OnShelfAlignmentChanged(aura::Window* root_window) override; | 99 void OnShelfAlignmentChanged(aura::Window* root_window) override; |
99 | 100 |
100 // Overridden from aura::WindowObserver | 101 // Overridden from aura::WindowObserver |
101 void OnWindowPropertyChanged(aura::Window* window, | 102 void OnWindowPropertyChanged(aura::Window* window, |
102 const void* key, | 103 const void* key, |
103 intptr_t old) override; | 104 intptr_t old) override; |
104 | 105 |
105 // Overridden from ash::wm::WindowStateObserver | 106 // Overridden from ash::wm::WindowStateObserver |
106 void OnPostWindowStateTypeChange(wm::WindowState* window_state, | 107 void OnPostWindowStateTypeChange(wm::WindowState* window_state, |
107 wm::WindowStateType old_type) override; | 108 wm::WindowStateType old_type) override; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 // are currently focused. | 191 // are currently focused. |
191 aura::Window* last_active_panel_; | 192 aura::Window* last_active_panel_; |
192 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; | 193 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; |
193 | 194 |
194 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); | 195 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); |
195 }; | 196 }; |
196 | 197 |
197 } // namespace ash | 198 } // namespace ash |
198 | 199 |
199 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 200 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
OLD | NEW |