| 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_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ | 5 #ifndef ASH_WM_OVERVIEW_WINDOW_GRID_H_ |
| 6 #define ASH_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ | 6 #define ASH_WM_OVERVIEW_WINDOW_GRID_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "ash/common/wm/overview/window_selector.h" | 14 #include "ash/wm/overview/window_selector.h" |
| 15 #include "ash/common/wm/window_state_observer.h" | 15 #include "ash/wm/window_state_observer.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/scoped_observer.h" | 17 #include "base/scoped_observer.h" |
| 18 #include "ui/aura/window_observer.h" | 18 #include "ui/aura/window_observer.h" |
| 19 | 19 |
| 20 namespace views { | 20 namespace views { |
| 21 class Widget; | 21 class Widget; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace wm { | 24 namespace wm { |
| 25 class Shadow; | 25 class Shadow; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 size_t num_columns_; | 188 size_t num_columns_; |
| 189 | 189 |
| 190 // True only after all windows have been prepared for overview. | 190 // True only after all windows have been prepared for overview. |
| 191 bool prepared_for_overview_; | 191 bool prepared_for_overview_; |
| 192 | 192 |
| 193 DISALLOW_COPY_AND_ASSIGN(WindowGrid); | 193 DISALLOW_COPY_AND_ASSIGN(WindowGrid); |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 } // namespace ash | 196 } // namespace ash |
| 197 | 197 |
| 198 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ | 198 #endif // ASH_WM_OVERVIEW_WINDOW_GRID_H_ |
| OLD | NEW |