| 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_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
| 6 #define ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 // the WorkspaceLayoutManager. | 53 // the WorkspaceLayoutManager. |
| 54 void SetMaximizeBackdropDelegate( | 54 void SetMaximizeBackdropDelegate( |
| 55 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate); | 55 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate); |
| 56 | 56 |
| 57 // Overridden from aura::LayoutManager: | 57 // Overridden from aura::LayoutManager: |
| 58 void OnWindowResized() override; | 58 void OnWindowResized() override; |
| 59 void OnWindowAddedToLayout(aura::Window* child) override; | 59 void OnWindowAddedToLayout(aura::Window* child) override; |
| 60 void OnWillRemoveWindowFromLayout(aura::Window* child) override; | 60 void OnWillRemoveWindowFromLayout(aura::Window* child) override; |
| 61 void OnWindowRemovedFromLayout(aura::Window* child) override; | 61 void OnWindowRemovedFromLayout(aura::Window* child) override; |
| 62 void OnChildWindowVisibilityChanged(aura::Window* child, | 62 void OnChildWindowVisibilityChanged(aura::Window* child, |
| 63 bool visibile) override; | 63 bool visible) override; |
| 64 void SetChildBounds(aura::Window* child, | 64 void SetChildBounds(aura::Window* child, |
| 65 const gfx::Rect& requested_bounds) override; | 65 const gfx::Rect& requested_bounds) override; |
| 66 | 66 |
| 67 // Overriden from aura::WindowObserver: | 67 // Overriden from aura::WindowObserver: |
| 68 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override; | 68 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override; |
| 69 void OnWindowPropertyChanged(aura::Window* window, | 69 void OnWindowPropertyChanged(aura::Window* window, |
| 70 const void* key, | 70 const void* key, |
| 71 intptr_t old) override; | 71 intptr_t old) override; |
| 72 void OnWindowStackingChanged(aura::Window* window) override; | 72 void OnWindowStackingChanged(aura::Window* window) override; |
| 73 void OnWindowDestroying(aura::Window* window) override; | 73 void OnWindowDestroying(aura::Window* window) override; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 ScopedObserver<keyboard::KeyboardController, | 142 ScopedObserver<keyboard::KeyboardController, |
| 143 keyboard::KeyboardControllerObserver> | 143 keyboard::KeyboardControllerObserver> |
| 144 keyboard_observer_; | 144 keyboard_observer_; |
| 145 | 145 |
| 146 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); | 146 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); |
| 147 }; | 147 }; |
| 148 | 148 |
| 149 } // namespace ash | 149 } // namespace ash |
| 150 | 150 |
| 151 #endif // ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 151 #endif // ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
| OLD | NEW |