| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ | 5 #ifndef ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ |
| 6 #define ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ | 6 #define ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 124 |
| 125 // Every window which got touched by our window manager gets added here. | 125 // Every window which got touched by our window manager gets added here. |
| 126 WindowToState window_state_map_; | 126 WindowToState window_state_map_; |
| 127 | 127 |
| 128 // All container windows which have to be tracked. | 128 // All container windows which have to be tracked. |
| 129 std::unordered_set<aura::Window*> observed_container_windows_; | 129 std::unordered_set<aura::Window*> observed_container_windows_; |
| 130 | 130 |
| 131 // Windows added to the container, but not yet shown. | 131 // Windows added to the container, but not yet shown. |
| 132 std::unordered_set<aura::Window*> added_windows_; | 132 std::unordered_set<aura::Window*> added_windows_; |
| 133 | 133 |
| 134 // True if all backdrops are hidden. |
| 135 bool backdrops_hidden_; |
| 136 |
| 134 std::unique_ptr<wm::MaximizeModeEventHandler> event_handler_; | 137 std::unique_ptr<wm::MaximizeModeEventHandler> event_handler_; |
| 135 | 138 |
| 136 DISALLOW_COPY_AND_ASSIGN(MaximizeModeWindowManager); | 139 DISALLOW_COPY_AND_ASSIGN(MaximizeModeWindowManager); |
| 137 }; | 140 }; |
| 138 | 141 |
| 139 } // namespace ash | 142 } // namespace ash |
| 140 | 143 |
| 141 #endif // ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ | 144 #endif // ASH_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_WINDOW_MANAGER_H_ |
| OLD | NEW |