| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE; | 86 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE; |
| 87 virtual void OnChildWindowVisibilityChanged(aura::Window* child, | 87 virtual void OnChildWindowVisibilityChanged(aura::Window* child, |
| 88 bool visibile) OVERRIDE; | 88 bool visibile) OVERRIDE; |
| 89 virtual void SetChildBounds(aura::Window* child, | 89 virtual void SetChildBounds(aura::Window* child, |
| 90 const gfx::Rect& requested_bounds) OVERRIDE; | 90 const gfx::Rect& requested_bounds) OVERRIDE; |
| 91 | 91 |
| 92 // Overridden from ash::LauncherIconObserver | 92 // Overridden from ash::LauncherIconObserver |
| 93 virtual void OnLauncherIconPositionsChanged() OVERRIDE; | 93 virtual void OnLauncherIconPositionsChanged() OVERRIDE; |
| 94 | 94 |
| 95 // Overridden from ash::ShellObserver | 95 // Overridden from ash::ShellObserver |
| 96 virtual void OnShelfAlignmentChanged(aura::RootWindow* root_window) OVERRIDE; | 96 virtual void OnShelfAlignmentChanged(aura::Window* root_window) OVERRIDE; |
| 97 | 97 |
| 98 // Overridden from ash::wm::WindowStateObserver | 98 // Overridden from ash::wm::WindowStateObserver |
| 99 virtual void OnWindowShowTypeChanged(wm::WindowState* window_state, | 99 virtual void OnWindowShowTypeChanged(wm::WindowState* window_state, |
| 100 wm::WindowShowType old_type) OVERRIDE; | 100 wm::WindowShowType old_type) OVERRIDE; |
| 101 | 101 |
| 102 // Overridden from aura::WindowObserver | 102 // Overridden from aura::WindowObserver |
| 103 virtual void OnWindowVisibilityChanged(aura::Window* window, | 103 virtual void OnWindowVisibilityChanged(aura::Window* window, |
| 104 bool visible) OVERRIDE; | 104 bool visible) OVERRIDE; |
| 105 | 105 |
| 106 // Overridden from aura::client::ActivationChangeObserver | 106 // Overridden from aura::client::ActivationChangeObserver |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 aura::Window* last_active_panel_; | 183 aura::Window* last_active_panel_; |
| 184 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; | 184 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; |
| 185 | 185 |
| 186 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); | 186 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace internal | 189 } // namespace internal |
| 190 } // namespace ash | 190 } // namespace ash |
| 191 | 191 |
| 192 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 192 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
| OLD | NEW |