| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ |
| 6 #define ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/shelf/shelf_layout_manager_observer.h" | 9 #include "ash/shelf/shelf_layout_manager_observer.h" |
| 10 #include "ash/shell_observer.h" | 10 #include "ash/shell_observer.h" |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 virtual void OnFullscreenStateChanged(bool is_fullscreen, | 152 virtual void OnFullscreenStateChanged(bool is_fullscreen, |
| 153 aura::Window* root_window) OVERRIDE; | 153 aura::Window* root_window) OVERRIDE; |
| 154 virtual void OnShelfAlignmentChanged(aura::Window* root_window) OVERRIDE; | 154 virtual void OnShelfAlignmentChanged(aura::Window* root_window) OVERRIDE; |
| 155 | 155 |
| 156 // ShelfLayoutManagerObserver: | 156 // ShelfLayoutManagerObserver: |
| 157 virtual void OnBackgroundUpdated( | 157 virtual void OnBackgroundUpdated( |
| 158 ShelfBackgroundType background_type, | 158 ShelfBackgroundType background_type, |
| 159 BackgroundAnimatorChangeType change_type) OVERRIDE; | 159 BackgroundAnimatorChangeType change_type) OVERRIDE; |
| 160 | 160 |
| 161 // wm::WindowStateObserver: | 161 // wm::WindowStateObserver: |
| 162 virtual void OnWindowShowTypeChanged(wm::WindowState* window_state, | 162 virtual void OnPreWindowShowTypeChange(wm::WindowState* window_state, |
| 163 wm::WindowShowType old_type) OVERRIDE; | 163 wm::WindowShowType old_type) OVERRIDE; |
| 164 | 164 |
| 165 // aura::WindowObserver: | 165 // aura::WindowObserver: |
| 166 virtual void OnWindowBoundsChanged(aura::Window* window, | 166 virtual void OnWindowBoundsChanged(aura::Window* window, |
| 167 const gfx::Rect& old_bounds, | 167 const gfx::Rect& old_bounds, |
| 168 const gfx::Rect& new_bounds) OVERRIDE; | 168 const gfx::Rect& new_bounds) OVERRIDE; |
| 169 virtual void OnWindowVisibilityChanging(aura::Window* window, | 169 virtual void OnWindowVisibilityChanging(aura::Window* window, |
| 170 bool visible) OVERRIDE; | 170 bool visible) OVERRIDE; |
| 171 virtual void OnWindowDestroying(aura::Window* window) OVERRIDE; | 171 virtual void OnWindowDestroying(aura::Window* window) OVERRIDE; |
| 172 | 172 |
| 173 // aura::client::ActivationChangeObserver: | 173 // aura::client::ActivationChangeObserver: |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 // Observers of dock bounds changes. | 306 // Observers of dock bounds changes. |
| 307 ObserverList<DockedWindowLayoutManagerObserver> observer_list_; | 307 ObserverList<DockedWindowLayoutManagerObserver> observer_list_; |
| 308 | 308 |
| 309 DISALLOW_COPY_AND_ASSIGN(DockedWindowLayoutManager); | 309 DISALLOW_COPY_AND_ASSIGN(DockedWindowLayoutManager); |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 } // namespace internal | 312 } // namespace internal |
| 313 } // namespace ash | 313 } // namespace ash |
| 314 | 314 |
| 315 #endif // ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 315 #endif // ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ |
| OLD | NEW |