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_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
6 #define ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 6 #define ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <set> | 9 #include <set> |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 void OnWindowBoundsChanged(WmWindow* window, | 69 void OnWindowBoundsChanged(WmWindow* window, |
70 const gfx::Rect& old_bounds, | 70 const gfx::Rect& old_bounds, |
71 const gfx::Rect& new_bounds) override; | 71 const gfx::Rect& new_bounds) override; |
72 | 72 |
73 // WmActivationObserver overrides: | 73 // WmActivationObserver overrides: |
74 void OnWindowActivated(WmWindow* gained_active, | 74 void OnWindowActivated(WmWindow* gained_active, |
75 WmWindow* lost_active) override; | 75 WmWindow* lost_active) override; |
76 | 76 |
77 // keyboard::KeyboardControllerObserver overrides: | 77 // keyboard::KeyboardControllerObserver overrides: |
78 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; | 78 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; |
| 79 void OnKeyboardClosed() override; |
79 | 80 |
80 // WindowStateObserver overrides: | 81 // WindowStateObserver overrides: |
81 void OnPostWindowStateTypeChange(wm::WindowState* window_state, | 82 void OnPostWindowStateTypeChange(wm::WindowState* window_state, |
82 wm::WindowStateType old_type) override; | 83 wm::WindowStateType old_type) override; |
83 | 84 |
84 // display::DisplayObserver overrides: | 85 // display::DisplayObserver overrides: |
85 void OnDisplayMetricsChanged(const display::Display& display, | 86 void OnDisplayMetricsChanged(const display::Display& display, |
86 uint32_t changed_metrics) override; | 87 uint32_t changed_metrics) override; |
87 | 88 |
88 // ShellObserver overrides: | 89 // ShellObserver overrides: |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 // A window which covers the full container and which gets inserted behind the | 131 // A window which covers the full container and which gets inserted behind the |
131 // topmost visible window. | 132 // topmost visible window. |
132 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_; | 133 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> backdrop_delegate_; |
133 | 134 |
134 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); | 135 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); |
135 }; | 136 }; |
136 | 137 |
137 } // namespace ash | 138 } // namespace ash |
138 | 139 |
139 #endif // ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ | 140 #endif // ASH_COMMON_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ |
OLD | NEW |